diff --git a/src/pages/Order/List/index.tsx b/src/pages/Order/List/index.tsx index ce0afd1..87890c9 100644 --- a/src/pages/Order/List/index.tsx +++ b/src/pages/Order/List/index.tsx @@ -209,8 +209,7 @@ const ListPage: React.FC = () => { { title: '联系电话', dataIndex: 'billing_phone', - render: (_, record) => record.shipping?.phone || record.billing?.phone, - + render: (_, record) => record.shipping?.phone || record.billing?.phone, }, { title: '州', @@ -752,8 +751,17 @@ const Detail: React.FC<{ valueEnum={ORDER_STATUS_ENUM} /> - - + + { return ( +
+ phone: + + {record?.shipping?.phone || record?.billing?.phone || '-'} + +
+ ); + }} />