diff --git a/src/views/emis/emisWaybill/UserOrderList.vue b/src/views/emis/emisWaybill/UserOrderList.vue index aabfd1a7..c0da72fb 100644 --- a/src/views/emis/emisWaybill/UserOrderList.vue +++ b/src/views/emis/emisWaybill/UserOrderList.vue @@ -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] })) },