From 4c347bf71ee75d9d97871d2928301f7f42bdfed7 Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Wed, 28 Sep 2022 16:08:04 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=94=AF=E4=BB=98=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/order/list/list.js | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/src/pages/order/list/list.js b/src/pages/order/list/list.js index 4806a73e..028d405c 100644 --- a/src/pages/order/list/list.js +++ b/src/pages/order/list/list.js @@ -112,13 +112,19 @@ const Column = [ width: "50px" }, { - title: "状态", + title: "订单状态", name: "statusDom", prop: "statusDom", type: "slot", width: "80px" }, - + { + title: "支付状态", + name: "pay_status", + prop: "pay_status", + type: "slot", + width: "80px" + }, { title: "平台批次号", name: "channel_activity_id", @@ -781,6 +787,24 @@ export default class orderlist extends React.Component {

) } + if (com == "pay_status") { + return ( +

+ + + {rowData.pay_status_text} + +

+ ) + } if (com === "type_text") { return {rowData.type === 1 ? "直充" : "立减金"} }