运单导出问题件调整

This commit is contained in:
wuteng 2026-01-05 11:01:21 +08:00
parent 09cf1bb205
commit f848139d99
4 changed files with 30 additions and 1 deletions

View File

@ -1231,6 +1231,13 @@ export default {
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']['moneyCompany'];
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){
return '是';
}else{
return '否';
}
}
return v[j]
}))
},

View File

@ -1081,7 +1081,8 @@ export default {
this.exportData(this.selectionList,loadingInstance);
}
else{
let qExportParam=this.initQueryParams();
this.initQueryParams();
let qExportParam={...this.queryParams};
qExportParam.pageNum=1;
qExportParam.pageSize=20000;
@ -1194,6 +1195,13 @@ export default {
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']['moneyCompany'];
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){
return '是';
}else{
return '否';
}
}
return v[j]
}))
},

View File

@ -1274,6 +1274,13 @@ export default {
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']['moneyCompany'];
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){
return '是';
}else{
return '否';
}
}
return v[j]
}))
},

View File

@ -1224,6 +1224,13 @@ export default {
if(j === 'waybillOther.moneyCompany'){
return v['waybillOther']['moneyCompany'];
}
if(j=== 'blIsQuestion'){
if(v[j] == 1){
return '是';
}else{
return '否';
}
}
return v[j]
}))
},