From a61ab5270e7deb124bd8acbade1ec6688bb46ce8 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Mon, 27 Oct 2025 13:36:38 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E5=AF=BC?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisWaybill/UserOrderList.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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] })) },