This commit is contained in:
@fawn-nine
2023-07-20 13:42:46 +08:00
parent 405264b9d1
commit b0cb239b98

View File

@@ -134,6 +134,7 @@
this.$api this.$api
.post('api/Reviewer/getReviewerListHistory', this.TaBle3) .post('api/Reviewer/getReviewerListHistory', this.TaBle3)
.then(res => { .then(res => {
this.loading = false
if (res.code == 0) { if (res.code == 0) {
if (res.data.lists != '') { if (res.data.lists != '') {
for (let i = 0; i < res.data.lists.length; i++) { for (let i = 0; i < res.data.lists.length; i++) {
@@ -148,7 +149,6 @@
res.data.lists[i].ctime = Y + M + D; res.data.lists[i].ctime = Y + M + D;
} }
} }
this.loading = false;
} }
this.tableData3 = res.data.lists; this.tableData3 = res.data.lists;
this.link_Tota3 = res.data.count || 0; this.link_Tota3 = res.data.count || 0;
@@ -157,6 +157,7 @@
} }
}) })
.catch(err => { .catch(err => {
this.loading = false
this.$message.error(err); this.$message.error(err);
}); });
}, },