订单列表导出
This commit is contained in:
parent
4b9fdf643d
commit
a61ab5270e
@ -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]
|
||||
}))
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user