bug修复
This commit is contained in:
parent
334a1c316c
commit
8ef51be801
|
|
@ -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':'不合格更换'})
|
||||
})
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue