mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-21 02:04:26 +08:00
modify style
This commit is contained in:
@@ -18,11 +18,14 @@
|
|||||||
<f7-icon :f7="showAccountBalance ? 'eye_slash_fill' : 'eye_fill'" size="18px"></f7-icon>
|
<f7-icon :f7="showAccountBalance ? 'eye_slash_fill' : 'eye_fill'" size="18px"></f7-icon>
|
||||||
</f7-link>
|
</f7-link>
|
||||||
<br />
|
<br />
|
||||||
<small class="account-overview-info" :style="{ opacity: 0.6 }">
|
<small class="account-overview-info" :style="{ opacity: 0.6 }" v-if="loading">
|
||||||
<span>{{ loading ? 'Total assets' : $t('Total assets') }}</span>
|
<span>Total assets | Total liabilities</span>
|
||||||
|
</small>
|
||||||
|
<small class="account-overview-info" :style="{ opacity: 0.6 }" v-else-if="!loading">
|
||||||
|
<span>{{ $t('Total assets') }}</span>
|
||||||
<span>{{ totalAssets | currency(defaultCurrency) }}</span>
|
<span>{{ totalAssets | currency(defaultCurrency) }}</span>
|
||||||
<span>|</span>
|
<span>|</span>
|
||||||
<span>{{ loading ? 'Total liabilities' : $t('Total liabilities') }}</span>
|
<span>{{ $t('Total liabilities') }}</span>
|
||||||
<span>{{ totalLiabilities | currency(defaultCurrency) }}</span>
|
<span>{{ totalLiabilities | currency(defaultCurrency) }}</span>
|
||||||
</small>
|
</small>
|
||||||
</f7-card-header>
|
</f7-card-header>
|
||||||
|
|||||||
Reference in New Issue
Block a user