Browse Source

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

liujt 7 months ago
parent
commit
aba649c536

+ 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: {