This commit is contained in:
77
2024-03-26 21:23:02 +08:00
parent 8a171ae091
commit 52e00d6606
5 changed files with 9 additions and 10 deletions

View File

@@ -56,14 +56,14 @@ export default {
},
home: {
productDetails: 'Product Details',
minimumDailyInterestRate: 'Minimum Daily Interest Rate',
minimumDailyInterestRate: 'Minimum Month Interest Rate',
borrowingLimit: 'Borrowing Limit',
installmentPeriod: 'Installment Period',
optional: 'Optional',
applicationAmount: 'Application Amount',
loanTerm: 'Loan Term',
repaymentPerInstallment: 'Repayment Per Installment',
dailyInterestRate: 'Daily Interest Rate',
dailyInterestRate: 'Month Interest Rate',
totalInterest: 'Total Interest',
successfulBorrowing: 'Successful Borrowing',
enterAgreement: 'I have read and agreed to',
@@ -113,8 +113,8 @@ export default {
photographPrompt: 'Please confirm that the camera permission is enabled.',
name: 'Name',
idCard: 'ID Card Number',
idCardUp1: 'Click to upload the front side of your ID card',
idCardUp2: 'Click to upload the back side of your ID card (with the national emblem)',
idCardUp1: 'Click to upload documents like person\'s face',
idCardUp2: 'Click to upload the back of the certificate',
idCardUp3: 'Click to upload a photo holding your ID card',
shootingRequirements: 'Photography Requirements',
standardShooting: 'Standard Shooting',

View File

@@ -56,14 +56,14 @@ export default {
},
home: {
productDetails: '产品详情',
minimumDailyInterestRate: '最低息',
minimumDailyInterestRate: '最低息',
borrowingLimit: '借款额度',
installmentPeriod: '分期期限',
optional: '可选',
applicationAmount: '申请金额',
loanTerm: '借款期限',
repaymentPerInstallment: '每期还款',
dailyInterestRate: '利率',
dailyInterestRate: '利率',
totalInterest: '总利息',
successfulBorrowing: '成功借款',
enterAgreement: '我已阅读并同意',

View File

@@ -17,7 +17,7 @@
<div class="product-content">
<div class="product-content-label">
<div>{{$t('home.minimumDailyInterestRate')}}</div>
<div><span>{{ loans.minDayServiceRate }}%</span></div>
<div><span>{{ loans.minMonthRate }}%</span></div>
</div>
<div class="product-content-label">
<div>{{$t('home.borrowingLimit')}}</div>
@@ -65,7 +65,7 @@
<div class="apply-mqhk">
<div>{{ $t('home.repaymentPerInstallment') }}</div>
<div>{{ defaultCoinUnit }}{{ calLoan.avgRepayment }}</div>
<div>({{ $t('home.dailyInterestRate') }}{{ calLoan.loanRateDay*100 }}% {{ $t('home.totalInterest') }}{{ defaultCoinUnit }}{{ calLoan.totalInterest }})</div>
<div>({{ $t('home.dailyInterestRate') }}{{ calLoan.loanRateMonth*100 }}% {{ $t('home.totalInterest') }}{{ defaultCoinUnit }}{{ calLoan.totalInterest }})</div>
</div>
</div>