From 9c63e80ca28bfe8933f760b50cfa3eec6355d4a0 Mon Sep 17 00:00:00 2001 From: zhuotianyuan Date: Tue, 27 Jan 2026 17:04:59 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8):=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=BF=AB=E9=80=92=E5=85=AC=E5=8F=B8=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增快递公司选择下拉框,并默认设置 UNIUNI 为初始值。同时修正发货信息中 email_addresses 字段的取值逻辑 --- src/pages/Order/List/index.tsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/pages/Order/List/index.tsx b/src/pages/Order/List/index.tsx index 36fd5cb..d9d14ef 100644 --- a/src/pages/Order/List/index.tsx +++ b/src/pages/Order/List/index.tsx @@ -1385,6 +1385,12 @@ const [shipmentPlatforms, setShipmentPlatforms] = useState([ { label: 'uniuni', value: 'uniuni' }, { label: 'tms.freightwaves', value: 'freightwaves' }, ]); + const [courierCompany, setCourierCompany] = useState([ + { label: 'UNIUNI', value: 'UNIUNI' }, + { label: 'PuroYYZ', value: 'PuroYYZ' }, + { label: 'CPYYZ', value: 'CPYYZ' }, + { label: 'UPSYYZ7000NEW', value: 'UPSYYZ7000NEW' }, + ]); return ( + + +