mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 17:24:26 +08:00
optimize ui
This commit is contained in:
@@ -11,17 +11,17 @@
|
|||||||
|
|
||||||
<f7-card :class="{ 'bg-color-yellow': true, 'skeleton-text': loading }">
|
<f7-card :class="{ 'bg-color-yellow': true, 'skeleton-text': loading }">
|
||||||
<f7-card-header class="display-block" style="padding-top: 100px;">
|
<f7-card-header class="display-block" style="padding-top: 100px;">
|
||||||
<small :style="{ opacity: 0.6 }">{{ $t('Net assets') }}</small><br />
|
<small :style="{ opacity: 0.6 }">{{ loading ? 'Net assets' : $t('Net assets') }}</small><br />
|
||||||
<span class="net-assets">{{ netAssets | currency(defaultCurrency) }}</span>
|
<span class="net-assets">{{ netAssets | currency(defaultCurrency) }}</span>
|
||||||
<f7-link class="margin-left-half" @click="toggleShowAccountBalance()">
|
<f7-link class="margin-left-half" @click="toggleShowAccountBalance()">
|
||||||
<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 }">
|
||||||
<span>{{ $t('Total assets') }}</span>
|
<span>{{ loading ? 'Total assets' : $t('Total assets') }}</span>
|
||||||
<span>{{ totalAssets | currency(defaultCurrency) }}</span>
|
<span>{{ totalAssets | currency(defaultCurrency) }}</span>
|
||||||
<span>|</span>
|
<span>|</span>
|
||||||
<span>{{ $t('Total liabilities') }}</span>
|
<span>{{ loading ? 'Total liabilities' : $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