报工记录页面报工损耗功能优化

yangwl
LAPTOP-R6EHHS26\86155 8 months ago
parent 5445e6f098
commit a67866390a

@ -442,7 +442,7 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="button-container"> <div class="button-container">
<el-button size="mini" type="primary" <el-button :disabled="loading" size="mini" type="primary"
@click="addConsumeTableRow(item.libList, index)">新增物料</el-button> @click="addConsumeTableRow(item.libList, index)">新增物料</el-button>
</div> </div>
</el-tab-pane> </el-tab-pane>
@ -919,6 +919,7 @@ export default {
this.openReport = false; this.openReport = false;
this.openReportSAP = false; this.openReportSAP = false;
this.openConsume = false; this.openConsume = false;
this.loading = false;
this.reset(); this.reset();
}, },
getSummaries(param) { getSummaries(param) {
@ -1244,7 +1245,7 @@ export default {
}, },
// //
SAPpReportSelection(selection) { SAPpReportSelection(selection) {
this.pReportRows = selection this.pReportRows = selection;
}, },
submitReport() { submitReport() {
this.reportRows = this.pReportRows; this.reportRows = this.pReportRows;
@ -1379,13 +1380,19 @@ export default {
return false; return false;
} }
submitConsumePS(this.consumeRows).then(response => { submitConsumePS(this.consumeRows)
this.$modal.msgSuccess("报工信息修改成功"); .then((response) => {
this.openConsume = false; this.$modal.msgSuccess("报工信息修改成功");
this.reset(); this.openConsume = false;
this.getList(); this.reset();
this.loading = false; this.getList();
}); this.loading = false;
})
.catch((error) => {
//
this.$modal.msgError(`报工信息修改失败`);
this.loading = false; // loading
});
}, },
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {

Loading…
Cancel
Save