Skip to content

Commit e3a0cfe

Browse files
committed
统计:修复错误
1 parent 6204ce6 commit e3a0cfe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/views/mall/home/components/OperationDataCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const getProductData = async () => {
7070
7171
/** 查询钱包充值数据 */
7272
const getWalletRechargeData = async () => {
73-
const paySummary = await PayStatisticsApi.getWalletRechargePrice();
73+
const paySummary = await PayStatisticsApi.getWalletRechargePrice()
7474
data.rechargePrice.value = paySummary.rechargePrice
7575
}
7676

src/views/mall/home/components/TradeTrendCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ const getOrderCountTrendComparison = async (
186186
dates.push(item.value.date)
187187
if (series.length === 2) {
188188
series[0].data.push(fenToYuan(item?.value?.orderPayPrice || 0)) // 当前金额
189-
series[1].data.push(fenToYuan(item?.value?.orderPayCount || 0)) // 对照数量
189+
series[1].data.push(fenToYuan(item?.value?.orderPayCount || 0)) // 当前数量
190190
} else {
191191
series[0].data.push(fenToYuan(item?.reference?.orderPayPrice || 0)) // 对照金额
192192
series[1].data.push(fenToYuan(item?.value?.orderPayPrice || 0)) // 当前金额

0 commit comments

Comments
 (0)