From a3b9aab1091bfb29cf1d4e5ad6b658b8410ffdf9 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Wed, 10 Dec 2025 09:26:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A7=E7=89=A9=E7=BB=84=E6=89=B9=E6=AC=A1?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../panel/BigBatchListPanel.vue | 58 ++++++++----------- 1 file changed, 24 insertions(+), 34 deletions(-) diff --git a/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue b/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue index e6c0b308..2c1e49d9 100644 --- a/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue +++ b/src/views/emis/emisTmsSiteBatch/panel/BigBatchListPanel.vue @@ -451,42 +451,32 @@ export default { /** 查询TMS组批次列表 */ getList() { this.loading = true; - + this.initQueryParams(); let rqParams = {...this.queryParams}; - if(this.queryParams.queryKey){ - // rqParams={ - // pageNum: this.queryParams.pageNum, - // pageSize: this.queryParams.pageSize, - // queryKey:null, - // params:{ - // billCode:null, - // batchNo:null - // } - // }; - - 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'){ - this.removeDateRange(rqParams,"createTime"); - rqParams=this.addDateRange(rqParams, this.dateTimeRange,"etd"); - }else{ - this.removeDateRange(rqParams,"etd"); - rqParams=this.addDateRange(rqParams, this.dateTimeRange,"createTime"); - } - } + // if(this.queryParams.queryKey){ + // 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'){ + // this.removeDateRange(rqParams,"createTime"); + // rqParams=this.addDateRange(rqParams, this.dateTimeRange,"etd"); + // }else{ + // this.removeDateRange(rqParams,"etd"); + // rqParams=this.addDateRange(rqParams, this.dateTimeRange,"createTime"); + // } + // } listEmisTmsSiteBatch(rqParams).then(response => { this.emisTmsBatchList = response.rows; this.total = response.total;