From 62aa9778631bfe93398221df7ab0a8afa6f69164 Mon Sep 17 00:00:00 2001 From: lzhizhao <790086754@qq.com> Date: Wed, 29 Oct 2025 10:40:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=9F=E8=AE=A1=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/operation-management/order/index.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/modules/operation-management/order/index.vue b/src/views/modules/operation-management/order/index.vue index 63fe127..4e57a85 100644 --- a/src/views/modules/operation-management/order/index.vue +++ b/src/views/modules/operation-management/order/index.vue @@ -82,19 +82,19 @@
订单金额(元)
-
¥ {{ (stats.totalMoney / 100).toFixed(2) || '0.00' }}
+
¥ {{ stats.totalMoney }}
订单完成率
-
{{ (stats.completeRate * 100).toFixed(2) || '0.00' }}%
+
{{ stats.completeRate }}%
代理商抽成(元)
-
¥ {{ (stats.agentCommission / 100).toFixed(2) || '0.00' }}
+
¥ {{ stats.agentCommission }}
@@ -214,27 +214,27 @@