|
@@ -828,7 +828,7 @@ export default {
|
|
|
this.$refs.taskForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
let obj = {
|
|
|
- token: this.pretreatmentInfo.token.token,
|
|
|
+ token: this.reviewToken,
|
|
|
taskIds: taskIds,
|
|
|
checkResult: this.taskForm.checkResult,
|
|
|
checkMessage: this.taskForm.checkMessage,
|
|
@@ -838,6 +838,7 @@ export default {
|
|
|
const res = await taskV2CheckBatchApi(obj);
|
|
|
if (res.data.code === 0 && res.data.data) {
|
|
|
this.$message.success('审核成功!');
|
|
|
+ this.checkIds = [];
|
|
|
|
|
|
this.handleClose();
|
|
|
this.list.forEach((item) => {
|