Kaynağa Gözat

审核问题

yuanmingze 4 ay önce
ebeveyn
işleme
af90985d37

BIN
dist.7z


+ 7 - 3
src/views/serviceManagement/servicesToBeReviewed/index.vue

@@ -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();
       }
     }
   }