diff --git a/src/views/mes/reportWork/index.vue b/src/views/mes/reportWork/index.vue index 324c760..2dd3da8 100644 --- a/src/views/mes/reportWork/index.vue +++ b/src/views/mes/reportWork/index.vue @@ -442,7 +442,7 @@
@@ -919,6 +919,7 @@ export default { this.openReport = false; this.openReportSAP = false; this.openConsume = false; + this.loading = false; this.reset(); }, getSummaries(param) { @@ -1244,7 +1245,7 @@ export default { }, // 多选框选中数据 SAPpReportSelection(selection) { - this.pReportRows = selection + this.pReportRows = selection; }, submitReport() { this.reportRows = this.pReportRows; @@ -1379,13 +1380,19 @@ export default { return false; } - submitConsumePS(this.consumeRows).then(response => { - this.$modal.msgSuccess("报工信息修改成功"); - this.openConsume = false; - this.reset(); - this.getList(); - this.loading = false; - }); + submitConsumePS(this.consumeRows) + .then((response) => { + this.$modal.msgSuccess("报工信息修改成功"); + this.openConsume = false; + this.reset(); + this.getList(); + this.loading = false; + }) + .catch((error) => { + // 请求失败的处理 + this.$modal.msgError(`报工信息修改失败`); + this.loading = false; // 关闭 loading 状态 + }); }, /** 导出按钮操作 */ handleExport() {