货物组批次,运输号查询

This commit is contained in:
wuteng 2025-12-01 14:00:45 +08:00
parent ac2419d2ea
commit c1835d4d21

View File

@ -8,6 +8,7 @@
<el-radio-group class="query-label" v-model="queryOrderType">
<el-radio label="1">运单号</el-radio>
<el-radio label="0">批次号</el-radio>
<el-radio label="2">运输号</el-radio>
</el-radio-group>
</div>
<XdTextareaInput
@ -52,13 +53,13 @@
<el-form-item label="下一网点" prop="nextSiteCode">
<EmisSiteSimplePicker :placeholder="$t('请选择')" v-model="queryParams.nextSiteCode" ></EmisSiteSimplePicker>
</el-form-item>
<el-form-item label="运输号" prop="carNo">
<!-- <el-form-item label="运输号" prop="carNo">
<el-input
v-model="queryParams.carNo"
:placeholder="$t('运输号')"
clearable
/>
</el-form-item>
</el-form-item> -->
<el-form-item label="目的国" prop="destCountry">
<CountryPicker :placeholder="$t('目的国')" v-model="queryParams.destCountry" ></CountryPicker>
</el-form-item>
@ -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;
}