We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20a9780 commit e2fe047Copy full SHA for e2fe047
src/views/mall/home/index.vue
@@ -9,7 +9,7 @@
9
tag="今日"
10
title="销售额"
11
prefix="¥"
12
- ::decimals="2"
+ :decimals="2"
13
:value="fenToYuan(orderComparison?.value?.orderPayPrice || 0)"
14
:reference="fenToYuan(orderComparison?.reference?.orderPayPrice || 0)"
15
/>
@@ -26,8 +26,8 @@
26
<ComparisonCard
27
28
title="订单量"
29
- :value="fenToYuan(orderComparison?.value?.orderPayCount || 0)"
30
- :reference="fenToYuan(orderComparison?.reference?.orderPayCount || 0)"
+ :value="orderComparison?.value?.orderPayCount || 0"
+ :reference="orderComparison?.reference?.orderPayCount || 0"
31
32
</el-col>
33
<el-col :md="6" :sm="12" :xs="24" :loading="loading">
0 commit comments