From 9ebbd77b22880ddf2d678267e7265405bd725c01 Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Thu, 29 Feb 2024 09:39:52 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20=E8=AE=A2=E5=8D=95=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=96=B0=E5=A2=9E=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/order/list/list.js | 5 +++++ src/pages/order/list/utils.js | 9 +++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/pages/order/list/list.js b/src/pages/order/list/list.js index 79b44c96..f213b6dc 100644 --- a/src/pages/order/list/list.js +++ b/src/pages/order/list/list.js @@ -873,6 +873,11 @@ export default class orderList extends React.Component { if (com == "order_type") { return 虚拟 } + if (com == "receive_error") { + return ( + {rowData.orderVoucher ? rowData.orderVoucher.receive_error : "-"} + ) + } if (com == "usage_status") { return (

diff --git a/src/pages/order/list/utils.js b/src/pages/order/list/utils.js index d8380a8a..d500e462 100644 --- a/src/pages/order/list/utils.js +++ b/src/pages/order/list/utils.js @@ -132,7 +132,6 @@ export const Column = [ width: "50px", type: "slot" }, - { title: "核销状态", name: "usage_status", @@ -140,7 +139,13 @@ export const Column = [ width: "120px", type: "slot" }, - + { + title: "发放失败", + name: "receive_error", + prop: "receive_error", + width: "150px", + type: "slot" + }, { title: "减扣(元)", name: "discount_amount",