From 9495895ff1cb598c4030034f944333e7190a9d4f Mon Sep 17 00:00:00 2001 From: zhuotianyuan Date: Thu, 29 Jan 2026 11:03:50 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8):=20?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E7=89=A9=E6=B5=81=E5=85=AC=E5=8F=B8=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E5=80=BC=E4=B8=BA=E7=A9=BA=E5=AD=97=E7=AC=A6=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将"最佳物流"对应的value值从"最优物流"改为空字符串,以保持数据一致性 --- src/pages/Order/List/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Order/List/index.tsx b/src/pages/Order/List/index.tsx index 2af0c41..9cf4c21 100644 --- a/src/pages/Order/List/index.tsx +++ b/src/pages/Order/List/index.tsx @@ -1202,7 +1202,7 @@ const Shipping: React.FC<{ { label: 'tms.freightwaves', value: 'freightwaves' }, ]); const [courierCompany, setCourierCompany] = useState([ - { label: '最佳物流', value: '最优物流' }, + { label: '最佳物流', value: '' }, { label: 'UNIUNI', value: 'UNIUNI' }, { label: 'PuroYYZ', value: 'PuroYYZ' }, { label: 'CPYYZ', value: 'CPYYZ' }, @@ -1259,7 +1259,7 @@ const Shipping: React.FC<{ if (shipmentInfo) shipmentInfo = JSON.parse(shipmentInfo); return { shipmentPlatform: 'freightwaves', - courierCompany: '最优物流', + courierCompany: '', ...data, // payment_method_id: shipmentInfo?.payment_method_id, stockPointId: shipmentInfo?.stockPointId,