a5c08ac8 by yangwei

删除加载动画

1 parent 1dbe94eb
...@@ -296,7 +296,6 @@ export default { ...@@ -296,7 +296,6 @@ export default {
296 "details.dictid": { 296 "details.dictid": {
297 handler: function (newValue) { 297 handler: function (newValue) {
298 if (!this.value) return; 298 if (!this.value) return;
299 this.$startLoading();
300 getChildDictList(newValue).then((res) => { 299 getChildDictList(newValue).then((res) => {
301 this.$endLoading(); 300 this.$endLoading();
302 let { result } = res; 301 let { result } = res;
......
...@@ -86,7 +86,6 @@ export default { ...@@ -86,7 +86,6 @@ export default {
86 methods: { 86 methods: {
87 // 初始化数据 87 // 初始化数据
88 queryClick () { 88 queryClick () {
89 // this.$startLoading();
90 getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { 89 getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => {
91 // this.$endLoading(); 90 // this.$endLoading();
92 let { records, total } = res.result 91 let { records, total } = res.result
...@@ -100,7 +99,6 @@ export default { ...@@ -100,7 +99,6 @@ export default {
100 cancelButtonText: '取消', 99 cancelButtonText: '取消',
101 type: 'warning' 100 type: 'warning'
102 }).then(() => { 101 }).then(() => {
103 this.$startLoading()
104 refreshDictCache().then(res => { 102 refreshDictCache().then(res => {
105 if (res.code == 200) { 103 if (res.code == 200) {
106 let refech = this.$store.dispatch('dict/generateDic') 104 let refech = this.$store.dispatch('dict/generateDic')
......