fix:수당 용어 변경 - '총 가입비 대비 수당' → '수당합계'

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-02 08:54:03 +09:00
parent 4b13786075
commit 7efcca5f3d
2 changed files with 4 additions and 4 deletions

View File

@@ -55,12 +55,12 @@
@endforeach
</div>
<!-- 가입비 대비 수당 -->
<!-- 수당합계 -->
<div class="bg-gray-50 rounded-xl p-4 border border-gray-200">
<div class="flex items-center justify-end gap-4">
<div class="text-right">
<p class="text-2xl font-bold text-gray-900">{{ number_format($totalCommissionRatio) }}</p>
<p class="text-sm text-gray-500"> 가입비 대비 수당</p>
<p class="text-sm text-gray-500">수당합계</p>
</div>
</div>
</div>

View File

@@ -164,10 +164,10 @@ class="p-2 text-gray-400 hover:text-gray-600 hover:bg-gray-100 rounded-lg transi
@endforeach
</div>
<!-- 가입비 대비 수당 -->
<!-- 수당합계 -->
<div class="bg-gray-50 rounded-xl p-4 border border-gray-200">
<div class="flex items-center justify-between">
<span class="text-sm text-gray-500"> 가입비 대비 수당</span>
<span class="text-sm text-gray-500">수당합계</span>
<p class="text-2xl font-bold text-gray-900">{{ number_format($totalCommissionRatio) }}</p>
</div>
</div>