From 80ce5a7f737ae0f9d61ec1c27300e0a0552c539c Mon Sep 17 00:00:00 2001 From: MaysWind Date: Fri, 20 Nov 2020 22:41:05 +0800 Subject: [PATCH] modify style --- src/views/mobile/accounts/AccountList.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/mobile/accounts/AccountList.vue b/src/views/mobile/accounts/AccountList.vue index b2e470c7..df6495b8 100644 --- a/src/views/mobile/accounts/AccountList.vue +++ b/src/views/mobile/accounts/AccountList.vue @@ -197,7 +197,7 @@ export default { }, netAssets() { if (!this.showAccountBalance) { - return '---'; + return '***'; } const accountsBalance = this.$utilities.getAllFilteredAccountsBalance(this.accounts, () => true); @@ -227,7 +227,7 @@ export default { }, totalAssets() { if (!this.showAccountBalance) { - return '---'; + return '***'; } const accountsBalance = this.$utilities.getAllFilteredAccountsBalance(this.accounts, category => category.isAsset); @@ -257,7 +257,7 @@ export default { }, totalLiabilities() { if (!this.showAccountBalance) { - return '---'; + return '***'; } const accountsBalance = this.$utilities.getAllFilteredAccountsBalance(this.accounts, category => category.isLiability); @@ -370,12 +370,12 @@ export default { if (this.showAccountBalance) { return account.balance; } else { - return '---'; + return '***'; } }, accountCategoryTotalBalance(accountCategory) { if (!this.showAccountBalance) { - return '---'; + return '***'; } const accountsBalance = this.$utilities.getAllFilteredAccountsBalance(this.accounts, category => category.id === accountCategory.id);