zhangjie 2 年之前
父节点
当前提交
7eb84bd65f

+ 4 - 0
src/modules/analysis/components/ModifyBaseConfig.vue

@@ -205,6 +205,10 @@ export default {
         this.curStep += 1;
         this.steps[this.curStep].status = "process";
       }
+
+      this.steps.forEach(item => {
+        item.disabled = item.status === "wait";
+      });
     }
   }
 };

+ 5 - 0
src/modules/analysis/components/baseConfig/BlueprintConfig.vue

@@ -168,6 +168,11 @@ export default {
 
         return nitem;
       });
+      this.uploadData = {
+        paperNumber: this.baseInfo.paperNumber,
+        paperType: this.baseInfo.paperType,
+        paperName: this.baseInfo.paperName
+      };
     },
     toImport() {
       this.$refs.ImportFile.open();

+ 3 - 1
src/modules/analysis/views/AnalysisBatchManage.vue

@@ -336,7 +336,9 @@ export default {
       if (confirm !== "confirm") return;
 
       await deleteAnalysisBatch(row.id);
-      this.$message.success("删除成功!");
+      this.$message.success(
+        "操作成功,请去基础配置 -> 系统设置 -> 同步管理中查看结果!"
+      );
       this.deletePageLastItem();
     },
     toViewLog(row) {