feat(订单列表): 添加外部订单ID列
This commit is contained in:
parent
bd3d9a00c5
commit
f5e0065053
|
|
@ -200,6 +200,10 @@ const ListPage: React.FC = () => {
|
||||||
title: '订单包含',
|
title: '订单包含',
|
||||||
dataIndex: 'keyword',
|
dataIndex: 'keyword',
|
||||||
hideInTable: true,
|
hideInTable: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '订单ID',
|
||||||
|
dataIndex: 'externalOrderId',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '订单日期',
|
title: '订单日期',
|
||||||
|
|
@ -248,7 +252,6 @@ const ListPage: React.FC = () => {
|
||||||
{
|
{
|
||||||
title: '状态',
|
title: '状态',
|
||||||
dataIndex: 'orderStatus',
|
dataIndex: 'orderStatus',
|
||||||
hideInSearch: true,
|
|
||||||
valueType: 'select',
|
valueType: 'select',
|
||||||
valueEnum: ORDER_STATUS_ENUM,
|
valueEnum: ORDER_STATUS_ENUM,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue