From c1835d4d210eddac786eb800fec8707966105cda Mon Sep 17 00:00:00 2001
From: wuteng <419274783@qq.com>
Date: Mon, 1 Dec 2025 14:00:45 +0800
Subject: [PATCH] =?UTF-8?q?=E8=B4=A7=E7=89=A9=E7=BB=84=E6=89=B9=E6=AC=A1?=
=?UTF-8?q?=EF=BC=8C=E8=BF=90=E8=BE=93=E5=8F=B7=E6=9F=A5=E8=AF=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../panel/BigBatchListPanel.vue | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
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;
}