所有页面-创建中英双语对照-优化翻译文档结构

This commit is contained in:
2026-03-17 11:42:16 +08:00
parent 4a7397ce04
commit c790f74905
110 changed files with 1729 additions and 421 deletions

View File

@@ -2,8 +2,8 @@
<div class="art-card p-5 overflow-hidden mb-5 max-sm:mb-4">
<div class="art-card-header mb-4">
<div class="title">
<h4>新增玩家</h4>
<p class="text-g-600 text-sm mt-1">最新50条新增玩家记录</p>
<h4>{{ $t('console.newPlayer.title') }}</h4>
<p class="text-g-600 text-sm mt-1">{{ $t('console.newPlayer.subtitle') }}</p>
</div>
</div>
<ArtTable
@@ -16,13 +16,13 @@
:header-cell-style="{ background: 'transparent' }"
>
<template #default>
<ElTableColumn label="玩家" prop="name" min-width="120" align="center" />
<ElTableColumn label="余额" prop="coin" min-width="120" align="center">
<ElTableColumn :label="$t('console.newPlayer.player')" prop="name" min-width="120" align="center" />
<ElTableColumn :label="$t('console.newPlayer.balance')" prop="coin" min-width="120" align="center">
<template #default="scope">
{{ formatCoin(scope.row.coin) }}
</template>
</ElTableColumn>
<ElTableColumn label="抽奖券" prop="total_ticket_count" min-width="100" align="center" />
<ElTableColumn :label="$t('console.newPlayer.ticket')" prop="total_ticket_count" min-width="100" align="center" />
</template>
</ArtTable>
</div>