Parcourir la source

删除无用判断

jbb il y a 2 ans
Parent
commit
013dd3552b
1 fichiers modifiés avec 0 ajouts et 4 suppressions
  1. 0 4
      src/views/shipment-details/shipmentList.vue

+ 0 - 4
src/views/shipment-details/shipmentList.vue

@@ -527,9 +527,6 @@ export default {
     // 分页查询 发运明细
     getShipmentList() {
       this.$nextTick(() => {
-       if(this.queryParam.flourOrGarment === ''){
-        this.shipmentListData = []
-       }else {
          shipmentList(this.queryParam).then(res => {
           if (res.success) {
             this.shipmentListData = res.result.records
@@ -543,7 +540,6 @@ export default {
             }
           }
         })
-       }
         
       })
     },