diff --git a/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue b/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue index 6f415d47..6f5c8a80 100644 --- a/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue +++ b/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue @@ -8,6 +8,7 @@ 运单号 批次号 + 运输号 - + @@ -467,9 +468,15 @@ export default { if(this.queryOrderType=='1'){ rqParams.params.billCode=this.queryParams.queryKey; rqParams.batchNo=null; + rqParams.carNo=null; + }else if(this.queryOrderType=='2'){ + rqParams.carNo=this.queryParams.queryKey; + rqParams.batchNo=null; + rqParams.params.billCode=null; }else{ rqParams.batchNo=this.queryParams.queryKey; rqParams.params.billCode=null; + rqParams.carNo=null; } }else{ if(this.queryETDType=='2'){ @@ -492,9 +499,15 @@ export default { if(this.queryOrderType=='1'){ this.queryParams.params.billCode=this.queryParams.queryKey; this.queryParams.batchNo=null; + this.queryParams.carNo=null; + }else if(this.queryOrderType=='2'){ + this.queryParams.carNo=this.queryParams.queryKey; + this.queryParams.batchNo=null; + this.queryParams.params.billCode=null; }else{ this.queryParams.batchNo=this.queryParams.queryKey; this.queryParams.params.billCode=null; + this.queryParams.carNo=null; }