feat(game-ui): 세력일람에 총 병사를 표시

This commit is contained in:
2026-08-29 03:30:55 +00:00
parent 26952fcdc7
commit 20a2812d65
4 changed files with 26 additions and 1 deletions
@@ -203,6 +203,16 @@ onBeforeUnmount(() => {
<td class="label-cell">장수 / 속령</td>
<td class="value-wide">{{ nation.generalCount }} / {{ nation.cityCount }}</td>
</tr>
<tr class="desktop-only">
<td class="label-cell"> 병사</td>
<td class="value-wide">{{ nation.totalCrew.toLocaleString('ko-KR') }}</td>
<td colspan="6"></td>
</tr>
<tr class="mobile-only">
<td class="label-cell"> 병사</td>
<td class="value-wide">{{ nation.totalCrew.toLocaleString('ko-KR') }}</td>
<td colspan="2"></td>
</tr>
<tr v-for="row in 2" :key="`desktop-officers-${row}`" class="desktop-only">
<template v-for="column in 4" :key="column">
<td class="label-cell">
@@ -316,6 +326,12 @@ onBeforeUnmount(() => {
<td class="neutral-label"> </td>
<td class="neutral-value">{{ nation.cityCount }}</td>
</tr>
<tr>
<td class="neutral-spacer">&nbsp;</td>
<td class="neutral-label"> 병사</td>
<td class="neutral-value">{{ nation.totalCrew.toLocaleString('ko-KR') }}</td>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="5">
속령 일람 :