From 90b7d9a8929340c874eedef40c69bad67e37faa1 Mon Sep 17 00:00:00 2001 From: Lei OT Date: Tue, 4 Nov 2025 11:58:50 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E8=80=81=E5=AE=A2=E6=88=B7:=20?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E6=95=B0,=20=E6=AF=9B=E5=88=A9=E7=9A=84?= =?UTF-8?q?=E5=B8=82=E5=9C=BA=E6=95=B0=E6=8D=AE=E5=8D=A0=E6=AF=94.=20(?= =?UTF-8?q?=E4=B8=8D=E8=AE=BA=E6=9D=A5=E6=BA=90)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/charts/Customer_care_regular.jsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/charts/Customer_care_regular.jsx b/src/charts/Customer_care_regular.jsx index c4c0194..1ce3dd6 100644 --- a/src/charts/Customer_care_regular.jsx +++ b/src/charts/Customer_care_regular.jsx @@ -283,6 +283,12 @@ const Customer_care_regular = () => { key: 'OrderRate', render: (text) => typeof text === 'number'?{parseFloat((text * 100).toFixed(2))}%:text, }, + { + title: '订单数占比(市场)', + dataIndex: 'OrderRate2', + key: 'OrderRate2', + render: (text) => typeof text === 'number'?{parseFloat((text * 100).toFixed(2))}%:text, + }, { title: '成行数', dataIndex: 'SUCOrderNum', @@ -305,6 +311,12 @@ const Customer_care_regular = () => { key: 'OrderMLRate', render: (text) => typeof text === 'number'?{parseFloat((text * 100).toFixed(2))}%:text, }, + { + title: '毛利占比(市场)', + dataIndex: 'OrderMLRate2', + key: 'OrderMLRate2', + render: (text) => typeof text === 'number'?{parseFloat((text * 100).toFixed(2))}%:text, + }, { title: '人数(含成人+儿童)', dataIndex: 'PersonNum',