营销活动:完善 review 提到的问题,添加拼团列表查看弹窗

This commit is contained in:
puhui999
2023-10-10 16:53:22 +08:00
parent 86323f970b
commit 3500a20630
10 changed files with 213 additions and 93 deletions

View File

@ -1,12 +1,7 @@
import { fenToYuan } from '@/utils'
import { TableColumnCtx } from 'element-plus'
import { floatToFixed2 } from '@/utils'
// 格式化金额【分转元】
export const fenToYuanFormat = (
row: any,
column: TableColumnCtx<any>,
cellValue: any,
index: number
) => {
return `${fenToYuan(cellValue)}`
// @ts-ignore
export const fenToYuanFormat = (_, _, cellValue: any, _) => {
return `${floatToFixed2(cellValue)}`
}