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

@@ -1 +0,0 @@
https://baidu.com,https://jingdong.com

View File

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

View File

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

View File

@@ -17,7 +17,7 @@
<div class="product-content"> <div class="product-content">
<div class="product-content-label"> <div class="product-content-label">
<div>{{$t('home.minimumDailyInterestRate')}}</div> <div>{{$t('home.minimumDailyInterestRate')}}</div>
<div><span>{{ loans.minDayServiceRate }}%</span></div> <div><span>{{ loans.minMonthRate }}%</span></div>
</div> </div>
<div class="product-content-label"> <div class="product-content-label">
<div>{{$t('home.borrowingLimit')}}</div> <div>{{$t('home.borrowingLimit')}}</div>
@@ -65,7 +65,7 @@
<div class="apply-mqhk"> <div class="apply-mqhk">
<div>{{ $t('home.repaymentPerInstallment') }}</div> <div>{{ $t('home.repaymentPerInstallment') }}</div>
<div>{{ defaultCoinUnit }}{{ calLoan.avgRepayment }}</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>
</div> </div>

View File

@@ -39,7 +39,7 @@ export default defineConfig({
proxy: { proxy: {
'/api': { '/api': {
target: ' http://dk.qiqizl.com', target: ' http://dk.qiqizl.com',
// target: 'http://localhost:8887', // target: 'http://localhost:8082',
changeOrigin: true, changeOrigin: true,
ws: true, ws: true,
rewrite: (path) => path.replace(new RegExp(`^/api`), '/api'), rewrite: (path) => path.replace(new RegExp(`^/api`), '/api'),