订单列表导出

This commit is contained in:
wuteng 2025-10-27 13:36:38 +08:00
parent 4b9fdf643d
commit a61ab5270e

View File

@ -1113,6 +1113,24 @@ export default {
if (j === 'paymentType') {
return this.selectDictLabel(this.dict.type.emis_payment_type,v[j]);
}
if (j === 'orderStatus') {
return this.selectDictLabel(this.dict.type.emis_order_status,v[j]);
}
if (j === 'orderType') {
if(v[j] == 1){
return '客户下单';
}else{
return '业务开单';
}
}
//是否是问题件
if(j=='blIsQuestion'){
if(v[j] == 1){
return '是';
}else{
return '否';
}
}
return v[j]
}))
},