보유금 수정
This commit is contained in:
parent
7e11c3f87a
commit
f3bb24a4a8
|
@ -240,7 +240,13 @@
|
|||
</div>
|
||||
<!-- 보유금 -->
|
||||
<div class="hidden lg:block">
|
||||
캐쉬: {{ partner.getMemberBalance()?.getBalanceSum() }}
|
||||
캐쉬:
|
||||
{{
|
||||
!!partner.getMemberBalance()?.getBalanceSum()
|
||||
? (partner.getMemberBalance()?.getBalanceSum()
|
||||
| currency: "KRW":"symbol")
|
||||
: (0 | currency: "KRW":"symbol")
|
||||
}}
|
||||
<hr style="margin: 7px 0px" />
|
||||
콤프: 3,000P
|
||||
<hr style="margin: 7px 0px" />
|
||||
|
|
|
@ -364,8 +364,10 @@
|
|||
<div class="hidden md:block" style="text-align: center">
|
||||
캐쉬:
|
||||
{{
|
||||
member.getMemberBalance()?.getBalanceSum()
|
||||
| currency: "KRW":"symbol"
|
||||
!!member.getMemberBalance()?.getBalanceSum()
|
||||
? (member.getMemberBalance()?.getBalanceSum()
|
||||
| currency: "KRW":"symbol")
|
||||
: (0 | currency: "KRW":"symbol")
|
||||
}}
|
||||
<hr style="margin: 7px 0px" />
|
||||
콤프: 2000P
|
||||
|
|
Loading…
Reference in New Issue
Block a user