fix(admin): 恢复 Settlement adminSelectionLabel 导入并修正 walletRemarkLabel 类型

This commit is contained in:
2026-06-23 14:01:04 +08:00
parent 1239dd7ac2
commit a9f067744d
2 changed files with 2 additions and 1 deletions

View File

@@ -82,7 +82,7 @@ const WALLET_REMARK_EXACT: Record<string, string> = {
export function walletRemarkLabel(
remark: string | null | undefined,
transactionType: string,
t: (key: string, params?: Record<string, unknown>) => string,
t: (key: string, params?: Record<string, string | number>) => string,
): string {
const raw = remark?.trim();
if (!raw) {

View File

@@ -24,6 +24,7 @@ import {
betResultLabel,
} from '../utils/bet-labels';
import { markAdminListStale } from '../utils/adminListStale';
import { adminSelectionLabel } from '../utils/adminSelectionLabel';
import type { AdminMatchDetail } from './match-form';
import AdminSubNav from '../components/AdminSubNav.vue';