bug
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 7m10s

This commit is contained in:
sexygoat
2026-04-11 12:19:35 +08:00
parent 90ae585651
commit 33e15314ac
30 changed files with 1077 additions and 532 deletions

View File

@@ -58,9 +58,15 @@ export const WithdrawalMethodMap = {
bank: { label: '银行卡', icon: 'bank' }
}
// ========== 佣金类型映射 ==========
// ========== 佣金来源映射 ==========
// 佣金类型映射 (one_time:一次性佣金, long_term:长期佣金)
// 佣金来源映射 (cost_diff:成本差价, one_time:一次性佣金)
export const CommissionSourceMap = {
cost_diff: { label: '成本差价', type: 'primary' as const },
one_time: { label: '一次性佣金', type: 'success' as const }
}
// 佣金类型映射 (one_time:一次性佣金, long_term:长期佣金) - 兼容旧字段
export const CommissionTypeMap = {
one_time: { label: '一次性佣金', type: 'primary' as const },
long_term: { label: '长期佣金', type: 'success' as const }