sync(theme-4): 从 main 同步优胜赛结算态与钱包流水展示优化
- checkout shared/api/admin 自 d3c2114
- player: outright 结算态逻辑、wallet txAmountClass、i18n 新增 key(保留海军蓝主题样式)
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
import { txDisplayAmount } from '@thebet365/shared';
|
||||
|
||||
export { txDisplayAmount };
|
||||
|
||||
/** 流水金额样式:0 用中性色,正数金色,负数红色 */
|
||||
export function txAmountClass(amount: string): 'zero' | 'pos' | 'neg' {
|
||||
const n = parseFloat(amount);
|
||||
if (n === 0) return 'zero';
|
||||
return n > 0 ? 'pos' : 'neg';
|
||||
}
|
||||
|
||||
export const TX_KEY_MAP: Record<string, string> = {
|
||||
MANUAL_DEPOSIT: 'wallet.tx_deposit',
|
||||
ADMIN_DEPOSIT: 'wallet.tx_admin_deposit',
|
||||
@@ -87,3 +98,4 @@ export function isCashbackType(type: string): boolean {
|
||||
const t = type.toUpperCase();
|
||||
return t === 'CASHBACK' || t === 'CASHBACK_DEPOSIT';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user