From 3886a03ac99fec8852aa68f23adc7be96a48591f Mon Sep 17 00:00:00 2001 From: zhuotianyuan Date: Fri, 10 Oct 2025 16:01:34 +0800 Subject: [PATCH] =?UTF-8?q?2025101-zhuotianyuan-=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=89=8B=E6=9C=BA=E5=8F=B7=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E5=AD=90=E8=A1=A8=E7=9A=84=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Order/List/index.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) 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 || '-'} + +
+ ); + }} />