File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
promotion/bargain/activity
statistics/product/components Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,6 @@ import * as BargainActivityApi from '@/api/mall/promotion/bargain/bargainActivit
151
151
import BargainActivityForm from ' ./BargainActivityForm.vue'
152
152
import { formatDate } from ' @/utils/formatTime'
153
153
import { fenToYuanFormat } from ' @/utils/formatter'
154
- import { closeBargainActivity } from ' @/api/mall/promotion/bargain/bargainActivity'
155
154
156
155
defineOptions ({ name: ' PromotionBargainActivity' })
157
156
Original file line number Diff line number Diff line change 10
10
</template >
11
11
<!-- 排行列表 -->
12
12
<el-table v-loading =" loading" :data =" list" @sort-change =" handleSortChange" >
13
- <el-table-column label =" 商品ID " prop =" spuId" min-width =" 70" />
13
+ <el-table-column label =" 商品 ID " prop =" spuId" min-width =" 70" />
14
14
<el-table-column label =" 商品图片" align =" center" prop =" picUrl" width =" 80" >
15
15
<template #default =" { row } " >
16
16
<el-image
27
27
<el-table-column label =" 加购件数" prop =" cartCount" min-width =" 105" sortable =" custom" />
28
28
<el-table-column label =" 下单件数" prop =" orderCount" min-width =" 105" sortable =" custom" />
29
29
<el-table-column label =" 支付件数" prop =" orderPayCount" min-width =" 105" sortable =" custom" />
30
- <el-table-column label =" 支付金额" prop =" orderPayPrice" min-width =" 105" sortable =" custom" />
30
+ <el-table-column
31
+ label =" 支付金额"
32
+ prop =" orderPayPrice"
33
+ min-width =" 105"
34
+ sortable =" custom"
35
+ :formatter =" fenToYuanFormat"
36
+ />
31
37
<el-table-column label =" 收藏数" prop =" favoriteCount" min-width =" 90" sortable =" custom" />
32
38
<el-table-column
33
39
label =" 访客-支付转化率(%)"
50
56
import { ProductStatisticsApi , ProductStatisticsVO } from ' @/api/mall/statistics/product'
51
57
import { CardTitle } from ' @/components/Card'
52
58
import { buildSortingField } from ' @/utils'
59
+ import { fenToYuanFormat } from ' @/utils/formatter'
53
60
54
61
/** 商品排行 */
55
62
defineOptions ({ name: ' ProductRank' })
You can’t perform that action at this time.
0 commit comments