✨ feat: 订单列表新增字段
This commit is contained in:
parent
f69fa17cfa
commit
9ebbd77b22
|
@ -873,6 +873,11 @@ export default class orderList extends React.Component {
|
|||
if (com == "order_type") {
|
||||
return <span>虚拟</span>
|
||||
}
|
||||
if (com == "receive_error") {
|
||||
return (
|
||||
<span>{rowData.orderVoucher ? rowData.orderVoucher.receive_error : "-"}</span>
|
||||
)
|
||||
}
|
||||
if (com == "usage_status") {
|
||||
return (
|
||||
<p className="dflexa">
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue