feat(admin,api,player): smart score solver, disable settlement UI, misc fixes
This commit is contained in:
@@ -63,7 +63,7 @@ const i18n = createI18n({
|
||||
tx_bet_push: '投注退水',
|
||||
tx_bet_refund: '投注退款',
|
||||
tx_bet_void: '投注撤销',
|
||||
tx_cashback: '返水',
|
||||
tx_cashback: '返水发放',
|
||||
tx_resettle: '重新结算',
|
||||
},
|
||||
bet: {
|
||||
@@ -288,7 +288,7 @@ const i18n = createI18n({
|
||||
tx_bet_push: 'Bet Push',
|
||||
tx_bet_refund: 'Bet Refund',
|
||||
tx_bet_void: 'Bet Voided',
|
||||
tx_cashback: 'Cashback',
|
||||
tx_cashback: 'Cashback Distribution',
|
||||
tx_resettle: 'Resettlement',
|
||||
},
|
||||
bet: {
|
||||
@@ -519,7 +519,7 @@ const i18n = createI18n({
|
||||
tx_bet_push: 'Pertaruhan Seri',
|
||||
tx_bet_refund: 'Bayaran Balik',
|
||||
tx_bet_void: 'Pertaruhan Dibatalkan',
|
||||
tx_cashback: 'Cashback',
|
||||
tx_cashback: 'Pembayaran Cashback',
|
||||
tx_resettle: 'Penyelesaian Semula',
|
||||
},
|
||||
bet: {
|
||||
|
||||
@@ -623,7 +623,6 @@ function hasSlipPickForMarket(marketType: string) {
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.vs-img { animation: none; filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.35)); }
|
||||
.hz-path, .hz-beam { animation: none; opacity: 0; }
|
||||
}
|
||||
|
||||
|
||||
@@ -23,6 +23,7 @@ const TX_KEY_MAP: Record<string, string> = {
|
||||
BET_VOID: 'wallet.tx_bet_void',
|
||||
BET_VOID_REFUND: 'wallet.tx_bet_void',
|
||||
CASHBACK: 'wallet.tx_cashback',
|
||||
CASHBACK_DEPOSIT: 'wallet.tx_cashback',
|
||||
RESETTLE_REVERSE: 'wallet.tx_resettle',
|
||||
DEPOSIT: 'wallet.tx_deposit',
|
||||
WITHDRAW: 'wallet.tx_withdraw',
|
||||
@@ -45,7 +46,6 @@ onMounted(async () => {
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<h2 class="section-title">{{ t('nav.wallet') }}</h2>
|
||||
<div v-if="transactions.length" class="card">
|
||||
<div
|
||||
v-for="tx in transactions"
|
||||
|
||||
Reference in New Issue
Block a user