|
|
@@ -32,7 +32,8 @@
|
|
|
<li>
|
|
|
<span>{{ $t('mine.balance') }}</span>
|
|
|
<span>
|
|
|
- {{ currencyFormat(currentAccount.currentbalance, currentAccount.currencyid) }}
|
|
|
+ {{ currencyFormat(currentAccount.currentbalance,
|
|
|
+ currentAccount.currencyid, { showSymbol: true }) }}
|
|
|
</span>
|
|
|
</li>
|
|
|
</ul>
|
|
|
@@ -40,7 +41,8 @@
|
|
|
<li>
|
|
|
<span>{{ $t('mine.availableFunds') }}</span>
|
|
|
<span>
|
|
|
- {{ currencyFormat(currentAccount.avaiableMoney, currentAccount.currencyid) }}
|
|
|
+ {{ currencyFormat(currentAccount.avaiableMoney,
|
|
|
+ currentAccount.currencyid, { showSymbol: true }) }}
|
|
|
</span>
|
|
|
</li>
|
|
|
</ul>
|