Browse Source

Merge branch 'develop'

zhouhao 2 years ago
parent
commit
4500fc0491
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/supply/pickup/components/pickup_form.vue

+ 2 - 1
src/views/supply/pickup/components/pickup_form.vue

@@ -549,12 +549,13 @@ export default {
         this.deliverList = res.data
         this.deliverList.forEach(k => {
           this.$set(k, 'warehouseFlag', null)
+          if (this.mainForm.pickupWay == 2 && this.logisticsNumber === '001' ) {
           if (k.refLinkman || k.refPhone || k.refInstallAddress) {
             this.$set(k, 'warehouseFlag', 1)
           }else{
             this.$set(k, 'warehouseFlag', 0)
-            
           }
+        }
         })
         this.listLoading = false
       })