This commit is contained in:
helloDy
2024-02-27 16:39:39 +08:00
parent 85791cc10c
commit 8e1a1848fb
9 changed files with 59 additions and 78 deletions

View File

@@ -542,13 +542,13 @@ export default {
params.pageNo = undefined;
params.pageSize = undefined;
this.$modal
.confirm('是否确认导出所有保养记录?')
.confirm('是否确认导出所有待确认的保养记录?')
.then(() => {
this.exportLoading = true;
return exportMaintainLogExcel(params);
})
.then((response) => {
this.$download.excel(response, '设备保养记录.xls');
this.$download.excel(response, '设备保养待确认记录.xls');
this.exportLoading = false;
})
.catch(() => {});