!239 分销员表格佣金字段格式化

Merge pull request !239 from 疯狂的世界/brokerage
This commit is contained in:
芋道源码
2023-09-09 01:46:05 +00:00
committed by Gitee
2 changed files with 29 additions and 2 deletions

12
src/utils/formatter.ts Normal file
View File

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