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 ? "直充" : "立减金"} }