This commit is contained in:
Park Byung Eun 2022-09-01 07:43:26 +00:00
parent 609b8eb81e
commit b836bbf555

View File

@ -180,9 +180,9 @@
<div> <div>
게임ID: {{ info.getSiteUsername() }} 게임ID: {{ info.getSiteUsername() }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
사이트ID{{ info.getSiteUsername() }} 사이트ID: {{ info.getSiteUsername() }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
닉네임{{ info.getMember()?.getNickname() }} 닉네임: {{ info.getMember()?.getNickname() }}
</div> </div>
<div> <div>
{{ info.getVendorName() }} {{ info.getVendorName() }}
@ -195,18 +195,32 @@
{{ info.getBettingType() }} {{ info.getBettingType() }}
</div> </div>
<div class="hidden sm:block"> <div class="hidden sm:block">
배팅: {{ info.getCash() }} 배팅: {{ info.getCash() | currency: "KRW":"symbol" }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
당첨: {{ info.getAfterCash() - info.getBeforeCash() }} 당첨:
{{
info.getAfterCash() - info.getBeforeCash()
| currency: "KRW":"symbol"
}}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
손익: {{ info.getAfterCash() - info.getBeforeCash() }} 손익:
{{
info.getAfterCash() - info.getBeforeCash()
| currency: "KRW":"symbol"
}}
</div> </div>
<div class="hidden md:block"> <div class="hidden md:block">
배팅전: {{ info.getBeforeCash() }} 배팅전:
{{ info.getBeforeCash() | currency: "KRW":"symbol" }}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
배팅후: {{ info.getAfterCash() - info.getBeforeCash() }} 배팅후:
{{
info.getAfterCash() - info.getBeforeCash()
| currency: "KRW":"symbol"
}}
<hr style="margin: 7px 0px" /> <hr style="margin: 7px 0px" />
최종금액: {{ info.getAfterCash() }} 최종금액:
{{ info.getAfterCash() | currency: "KRW":"symbol" }}
</div> </div>
<div class="hidden md:block"> <div class="hidden md:block">
<button <button