Cette révision appartient à :
helloDy
2024-02-27 16:39:39 +08:00
Parent 85791cc10c
révision 8e1a1848fb
9 fichiers modifiés avec 59 ajouts et 78 suppressions

Voir le fichier

@@ -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(() => {});