zhangjie 1 年之前
父節點
當前提交
71a8e44246
共有 2 個文件被更改,包括 4 次插入1 次删除
  1. 3 0
      src/modules/print/components/PrintPlanBkDetail.vue
  2. 1 1
      src/modules/print/views/PrintPlanManage.vue

+ 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();