Prechádzať zdrojové kódy

compute计算采集

gks 1 rok pred
rodič
commit
12bf93ffec
1 zmenil súbory, kde vykonal 5 pridanie a 9 odobranie
  1. 5 9
      src/views/GATHER/index.vue

+ 5 - 9
src/views/GATHER/index.vue

@@ -314,7 +314,7 @@
           <template
             v-if="
               scope.row.collStatus == 1 &&
-              scope.row.reportStatus == 0 &&
+              (scope.row.reportStatus == 0 || scope.row.reportStatus == null) &&
               scope.row.approveStatus == 2 &&
               checkPermi(['gather:GATHER:report'])
             "
@@ -1315,21 +1315,17 @@ export default {
             addGATHER(this.form).then((response) => {
               if (response.code == 200) {
                 this.$modal.msgSuccess("录入成功");
-                this.open = false;
                 this.getList();
+                this.open = false;
+                compute(this.form).then((response) => {});
               }
             });
-
-            if (is) {
-              compute(this.form).then((response) => {
-                this.getList();
-              });
-            }
           } else if (type == "edit") {
             updateGATHER(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
-              this.openDetail = false;
               this.getList();
+              this.openDetail = false;
+              compute(this.form).then((response) => {});
             });
           }
         })