njzscloud-dispose-web/src/pages/fin/money-flow/constants.ts

28 lines
414 B
TypeScript

import { createEnum } from '@/common/utils/enums.ts'
const moneyChangeCategoryList = [
{
val: 'ChongZhi',
txt: '充值',
},
{
val: 'YingShou',
txt: '营收',
},
{
val: 'TuiKuan',
txt: '退款',
},
{
val: 'TiaoZhang',
txt: '调账',
},
{
val: 'ZhiFu',
txt: '支付',
},
] as const
export const moneyChangeCategory = createEnum(moneyChangeCategoryList)