|
@@ -671,7 +671,6 @@ export default {
|
|
|
res = await checkSingleApi(obj);
|
|
|
} else {
|
|
|
const ids = this.pretreatmentInfo?.available.map((item) => item.taskId);
|
|
|
- console.log('this.pretreatmentInfo', this.pretreatmentInfo);
|
|
|
this.loading = true;
|
|
|
let obj = {
|
|
|
token: this.pretreatmentInfo?.token?.token,
|
|
@@ -685,14 +684,19 @@ export default {
|
|
|
this.loading = false;
|
|
|
} catch (err) {
|
|
|
this.loading = false;
|
|
|
- q;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (res.data.code === 0 && res.data.data) {
|
|
|
this.$message.success('审核成功!');
|
|
|
+ this.reviewDialog = false;
|
|
|
+ this.taskForm = {
|
|
|
+ checkResult: '',
|
|
|
+ checkMessage: ''
|
|
|
+ };
|
|
|
+ this.checkIds = [];
|
|
|
+ this.currentTaskId = '';
|
|
|
this.getList();
|
|
|
- this.handleClose();
|
|
|
}
|
|
|
}
|
|
|
}
|