zhangjie 1 year ago
parent
commit
71a8e44246

+ 3 - 0
src/modules/print/components/PrintPlanBkDetail.vue

@@ -124,6 +124,8 @@
               >{{ scope.row.realName }}({{ scope.row.loginName }})</span
             >
           </el-table-column>
+          <el-table-column prop="statusDisplay" label="状态" width="100">
+          </el-table-column>
           <el-table-column
             prop="exposedPaperType"
             label="已曝光类型"
@@ -340,6 +342,7 @@ export default {
       const res = await printPlanBkDetailUpdate(datas).catch(() => {});
       if (!res) return;
       this.$message.success("提交成功!");
+      this.getList();
     },
   },
 };

+ 1 - 1
src/modules/print/views/PrintPlanManage.vue

@@ -300,7 +300,7 @@ export default {
     },
     toPreview(row) {
       this.curPrintPlan = row;
-      if (row.category === "FORMAL") {
+      if (row.category === "FORMAL" || !row.category) {
         this.$refs.PrintPlanDetail.open();
       } else {
         this.$refs.PrintPlanBkDetail.open();