This commit is contained in:
@@ -9,7 +9,8 @@ export const COMMISSION_STATUS_OPTIONS = [
|
||||
{ label: '已冻结', value: CommissionStatus.FROZEN, type: 'info' as const },
|
||||
{ label: '解冻中', value: CommissionStatus.UNFREEZING, type: 'warning' as const },
|
||||
{ label: '已发放', value: CommissionStatus.RELEASED, type: 'success' as const },
|
||||
{ label: '已失效', value: CommissionStatus.INVALID, type: 'danger' as const }
|
||||
{ label: '已失效', value: CommissionStatus.INVALID, type: 'danger' as const },
|
||||
{ label: '待人工修正', value: CommissionStatus.PENDING_CORRECTION, type: 'warning' as const }
|
||||
]
|
||||
|
||||
// 提现状态选项
|
||||
@@ -39,12 +40,13 @@ export const WithdrawalStatusMap = {
|
||||
|
||||
// ========== 佣金状态映射 ==========
|
||||
|
||||
// 佣金状态映射 (1:已冻结, 2:解冻中, 3:已发放, 4:已失效)
|
||||
// 佣金状态映射 (1:已冻结, 2:解冻中, 3:已发放, 4:已失效, 99:待人工修正)
|
||||
export const CommissionStatusMap = {
|
||||
1: { label: '已冻结', type: 'info' as const, color: '#909399' },
|
||||
2: { label: '解冻中', type: 'warning' as const, color: '#E6A23C' },
|
||||
3: { label: '已发放', type: 'success' as const, color: '#67C23A' },
|
||||
4: { label: '已失效', type: 'danger' as const, color: '#F56C6C' }
|
||||
4: { label: '已失效', type: 'danger' as const, color: '#F56C6C' },
|
||||
99: { label: '待人工修正', type: 'warning' as const, color: '#E6A23C' }
|
||||
}
|
||||
|
||||
// ========== 提现方式映射 ==========
|
||||
|
||||
Reference in New Issue
Block a user