diff --git a/src/views/index/home/index.vue b/src/views/index/home/index.vue
index 17a7992..0752d2b 100644
--- a/src/views/index/home/index.vue
+++ b/src/views/index/home/index.vue
@@ -17,7 +17,7 @@
{{$t('home.minimumDailyInterestRate')}}
-
{{ calLoan.loanRate }}%
+
{{ loans.minDayServiceRate }}%
{{$t('home.borrowingLimit')}}
@@ -65,7 +65,7 @@
{{ $t('home.repaymentPerInstallment') }}
¥{{ calLoan.avgRepayment }}
-
({{ $t('home.dailyInterestRate') }}{{ calLoan.loanRate }}% {{ $t('home.totalInterest') }}¥{{ calLoan.totalInterest }})
+
({{ $t('home.dailyInterestRate') }}{{ calLoan.loanRateDay*100 }}% {{ $t('home.totalInterest') }}¥{{ calLoan.totalInterest }})
@@ -177,6 +177,7 @@ const loans = reactive({
loansInitMonth: "",
loansMaxAccount: 0,
loansMinAccount: 0,
+ minDayServiceRate: 0,
loansMonth: "",
loansMonthList: [],
serviceRate: "",
@@ -215,7 +216,8 @@ const calLoan = reactive({
"totalInterest": 0,
"totalLoanMoney": 0,
"totalMonth": 0,
- "totalRepayment": 0
+ "totalRepayment": 0,
+ "loanRateDay": 0
})
const params = computed(() => {
diff --git a/src/views/index/serveList/index.vue b/src/views/index/serveList/index.vue
index ec4708b..90136c2 100644
--- a/src/views/index/serveList/index.vue
+++ b/src/views/index/serveList/index.vue
@@ -118,7 +118,7 @@ const stepBorrow = reactive({
"over": true
},
{
- "name": t('app.bankCardAbnormality'),
+ "name": "",
"over": true
},
{