forked from yoone/WEB
1
0
Fork 0

feat(订单列表): 添加外部订单ID列

This commit is contained in:
zhuotianyuan 2025-12-23 19:21:45 +08:00
parent bd3d9a00c5
commit f5e0065053
1 changed files with 4 additions and 1 deletions

View File

@ -200,6 +200,10 @@ const ListPage: React.FC = () => {
title: '订单包含',
dataIndex: 'keyword',
hideInTable: true,
},
{
title: '订单ID',
dataIndex: 'externalOrderId',
},
{
title: '订单日期',
@ -248,7 +252,6 @@ const ListPage: React.FC = () => {
{
title: '状态',
dataIndex: 'orderStatus',
hideInSearch: true,
valueType: 'select',
valueEnum: ORDER_STATUS_ENUM,
},