Browse Source

删除无用判断

jbb 2 years ago
parent
commit
013dd3552b
1 changed files with 0 additions and 4 deletions
  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 {
             }
           }
         })
-       }
         
       })
     },