Skip to content

Commit e2fe047

Browse files
committed
【修复】商城系统:管理后台的商城订单统计数据有问题
1 parent 20a9780 commit e2fe047

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/views/mall/home/index.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
tag="今日"
1010
title="销售额"
1111
prefix=""
12-
::decimals="2"
12+
:decimals="2"
1313
:value="fenToYuan(orderComparison?.value?.orderPayPrice || 0)"
1414
:reference="fenToYuan(orderComparison?.reference?.orderPayPrice || 0)"
1515
/>
@@ -26,8 +26,8 @@
2626
<ComparisonCard
2727
tag="今日"
2828
title="订单量"
29-
:value="fenToYuan(orderComparison?.value?.orderPayCount || 0)"
30-
:reference="fenToYuan(orderComparison?.reference?.orderPayCount || 0)"
29+
:value="orderComparison?.value?.orderPayCount || 0"
30+
:reference="orderComparison?.reference?.orderPayCount || 0"
3131
/>
3232
</el-col>
3333
<el-col :md="6" :sm="12" :xs="24" :loading="loading">

0 commit comments

Comments
 (0)