fix 修改loading状态 以及表头编辑

This commit is contained in:
zhangyu
2020-08-05 09:54:58 +08:00
parent 674acaabd6
commit 8048fba321
3 changed files with 15 additions and 11 deletions

View File

@@ -468,7 +468,6 @@
this.$set(this.searchLabel, "pageSize", this.pageObj.pageSize);
setTimeout(() => {
this.$get('alert/message', this.searchLabel).then(response => {
this.loading = false;
if (response.code == 200) {
this.tableData = response.data.list;
this.tableData.forEach((item) => {
@@ -494,6 +493,7 @@
});
});
this.pageObj.total = response.data.total;
this.loading = false;
}
});
}, 1000);