mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-21 02:04:26 +08:00
update style
This commit is contained in:
@@ -152,7 +152,7 @@
|
|||||||
</v-avatar>
|
</v-avatar>
|
||||||
</v-list-item-action>
|
</v-list-item-action>
|
||||||
</template>
|
</template>
|
||||||
<v-list-item-title class="ms-2 font-weight-semibold">
|
<v-list-item-title class="ms-2">
|
||||||
{{ currentNickName }}
|
{{ currentNickName }}
|
||||||
</v-list-item-title>
|
</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<v-col cols="12">
|
<v-col cols="12">
|
||||||
<v-card :title="tt('Application Lock')">
|
<v-card :title="tt('Application Lock')">
|
||||||
<v-card-text class="pb-0">
|
<v-card-text class="pb-0">
|
||||||
<p class="text-body-1 font-weight-semibold" v-if="!isEnableApplicationLock">
|
<p class="text-body-1" v-if="!isEnableApplicationLock">
|
||||||
{{ tt('Application lock is not enabled') }}
|
{{ tt('Application lock is not enabled') }}
|
||||||
</p>
|
</p>
|
||||||
<p class="text-body-1" v-if="isEnableApplicationLock">
|
<p class="text-body-1" v-if="isEnableApplicationLock">
|
||||||
@@ -22,10 +22,10 @@
|
|||||||
</v-card-text>
|
</v-card-text>
|
||||||
|
|
||||||
<v-card-text class="pb-0">
|
<v-card-text class="pb-0">
|
||||||
<p class="text-body-1 font-weight-semibold" v-if="!isEnableApplicationLock">
|
<p class="text-body-1" v-if="!isEnableApplicationLock">
|
||||||
{{ tt('Please enter a new 6-digit PIN code. The PIN code would encrypt your local data, so you need to enter it every time you open this app. If this PIN code is lost, you will need to log in again.') }}
|
{{ tt('Please enter a new 6-digit PIN code. The PIN code would encrypt your local data, so you need to enter it every time you open this app. If this PIN code is lost, you will need to log in again.') }}
|
||||||
</p>
|
</p>
|
||||||
<p class="text-body-1 font-weight-semibold" v-if="isEnableApplicationLock">
|
<p class="text-body-1" v-if="isEnableApplicationLock">
|
||||||
{{ tt('Your current PIN code is required to disable application lock.') }}
|
{{ tt('Your current PIN code is required to disable application lock.') }}
|
||||||
</p>
|
</p>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
</v-btn>
|
</v-btn>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-text class="mt-1 pb-1">
|
<v-card-text class="mt-1 pb-1">
|
||||||
<div class="font-weight-semibold text-truncate text-h4 text-income me-2 mb-2" v-if="!loading || incomeAmount">{{ incomeAmount }}</div>
|
<div class="text-truncate text-h4 text-income me-2 mb-2" v-if="!loading || incomeAmount">{{ incomeAmount }}</div>
|
||||||
<v-skeleton-loader class="skeleton-no-margin mt-4 mb-8" type="text" width="120px" :loading="true" v-else-if="loading && !incomeAmount"></v-skeleton-loader>
|
<v-skeleton-loader class="skeleton-no-margin mt-4 mb-8" type="text" width="120px" :loading="true" v-else-if="loading && !incomeAmount"></v-skeleton-loader>
|
||||||
<div class="text-truncate text-h5 text-expense" v-if="!loading || expenseAmount">{{ expenseAmount }}</div>
|
<div class="text-truncate text-h5 text-expense" v-if="!loading || expenseAmount">{{ expenseAmount }}</div>
|
||||||
<v-skeleton-loader class="skeleton-no-margin mb-1" style="padding-bottom: 2px" type="text" width="120px" :loading="true" v-else-if="loading && !expenseAmount"></v-skeleton-loader>
|
<v-skeleton-loader class="skeleton-no-margin mb-1" style="padding-bottom: 2px" type="text" width="120px" :loading="true" v-else-if="loading && !expenseAmount"></v-skeleton-loader>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<v-card-text class="pb-0">
|
<v-card-text class="pb-0">
|
||||||
<v-skeleton-loader class="skeleton-no-margin pt-2 pb-5" type="text" style="width: 150px" :loading="true" v-if="loading"></v-skeleton-loader>
|
<v-skeleton-loader class="skeleton-no-margin pt-2 pb-5" type="text" style="width: 150px" :loading="true" v-if="loading"></v-skeleton-loader>
|
||||||
<p class="text-body-1 font-weight-semibold" v-if="!loading && !new2FAQRCode">
|
<p class="text-body-1" v-if="!loading && !new2FAQRCode">
|
||||||
{{ status === true ? tt('Two-factor authentication is already enabled.') : tt('Two-factor authentication is not enabled yet.') }}
|
{{ status === true ? tt('Two-factor authentication is already enabled.') : tt('Two-factor authentication is not enabled yet.') }}
|
||||||
</p>
|
</p>
|
||||||
<p class="text-body-1" v-if="!loading && new2FAQRCode">
|
<p class="text-body-1" v-if="!loading && new2FAQRCode">
|
||||||
|
|||||||
Reference in New Issue
Block a user