a5c08ac8 by yangwei

删除加载动画

1 parent 1dbe94eb
......@@ -296,7 +296,6 @@ export default {
"details.dictid": {
handler: function (newValue) {
if (!this.value) return;
this.$startLoading();
getChildDictList(newValue).then((res) => {
this.$endLoading();
let { result } = res;
......
......@@ -86,7 +86,6 @@ export default {
methods: {
// 初始化数据
queryClick () {
// this.$startLoading();
getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => {
// this.$endLoading();
let { records, total } = res.result
......@@ -100,7 +99,6 @@ export default {
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$startLoading()
refreshDictCache().then(res => {
if (res.code == 200) {
let refech = this.$store.dispatch('dict/generateDic')
......