Explorar el Código

Merge branch 'develop'

zhouhao hace 2 años
padre
commit
4500fc0491
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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
       })