bug修复

This commit is contained in:
hongchao 2025-07-23 18:25:43 +08:00
parent 334a1c316c
commit 8ef51be801
2 changed files with 13 additions and 4 deletions

View File

@ -254,7 +254,7 @@
<div class="fillIn" style="margin-top: 10px; display: flex; justify-content: space-between">
<div class="item" style="width: 33%">
<div>
<span>审核{{ }}</span>
<span>审核</span>
</div>
</div>
@ -425,7 +425,7 @@ export default {
}
if(res.data[0].partTypeList&& res.data[0].partTypeList.length != 0){
res.data[0].partTypeList.forEach((e) => {
this.printTableData.push({'partName':e.partName,'status':'合格'})
this.printTableData.push({'partName':e.partName,'status':'合格更换'})
})
}
},

View File

@ -105,6 +105,7 @@
v-loading="loading"
:data="typeList"
row-key="id"
ref="multipleTable"
@selection-change="handleSelectionChange"
border
>
@ -395,7 +396,11 @@ export default {
outerAudit(this.passTemp).then((response) => {
if (response.code == 200) {
this.$modal.msgSuccess("通过成功");
router.go(0); //
this.$refs.multipleTable.clearSelection();
this.ids = [];
this.passTemp = [];
this.failTemp = [];
// router.go(0); //
}
this.getTaskInfo();
});
@ -412,7 +417,11 @@ export default {
outerAudit(this.failTemp).then((response) => {
if (response.code == 200) {
this.$modal.msgSuccess("驳回成功");
router.go(0); //
this.$refs.multipleTable.clearSelection();
this.ids = [];
this.passTemp = [];
this.failTemp = [];
// router.go(0); //
}
this.getTaskInfo();
});