Bläddra i källkod

删除无用判断

jbb 2 år sedan
förälder
incheckning
013dd3552b
1 ändrade filer med 0 tillägg och 4 borttagningar
  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 {
             }
           }
         })
-       }
         
       })
     },