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",