Browse Source

处理报告单查询报错加载动画一直在问题

master-admin
lzp 2 weeks ago
parent
commit
b74bca2a20
  1. 2
      web_admin/adminapi/index.html
  2. BIN
      web_admin/adminapi/index.html.gz
  3. 13
      web_admin/src/views/report/view.vue

2
web_admin/adminapi/index.html

File diff suppressed because one or more lines are too long

BIN
web_admin/adminapi/index.html.gz

Binary file not shown.

13
web_admin/src/views/report/view.vue

@ -105,10 +105,15 @@ export default {
/** 查询公告列表 */
getList() {
this.loading = true;
exportPdf(this.queryParams).then((res) => {
this.tableList = res.data.list || [];
this.loading = false;
});
exportPdf(this.queryParams)
.then((res) => {
this.tableList = res.data.list || [];
this.loading = false;
})
.catch(() => {
console.log("导出失败");
this.loading = false;
});
},
},
};

Loading…
Cancel
Save