瀏覽代碼

fix(bpm): 修正出库标签页显示条件逻辑

liujt 7 月之前
父節點
當前提交
aba649c536
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/views/bpm/handleTask/components/selectedCollectionOutbound/boxTabPage.vue

+ 1 - 2
src/views/bpm/handleTask/components/selectedCollectionOutbound/boxTabPage.vue

@@ -61,14 +61,13 @@
           {
             label: '出库',
             name: this.isView ? 'tab3' : 'tab2',
-            isShow: !this.taskDefinitionKey || this.taskDefinitionKey == 'storeman'
+            isShow: this.isView || this.taskDefinitionKey == 'storeman'
           }
         ];
         return list.filter((item) => item.isShow);
       }
     },
     async created() {
-      console.log('taskDefinitionKey~~~~', this.taskDefinitionKey);
       this.getPickOrderDetail();
     },
     methods: {