diff --git a/public/domain.txt b/public/domain.txt index 47c4cea..e69de29 100644 --- a/public/domain.txt +++ b/public/domain.txt @@ -1 +0,0 @@ -https://baidu.com,https://jingdong.com diff --git a/src/lang/en_us.ts b/src/lang/en_us.ts index 11c103f..2e3efc1 100644 --- a/src/lang/en_us.ts +++ b/src/lang/en_us.ts @@ -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', diff --git a/src/lang/zh_cn.ts b/src/lang/zh_cn.ts index c480c11..c922306 100644 --- a/src/lang/zh_cn.ts +++ b/src/lang/zh_cn.ts @@ -56,14 +56,14 @@ export default { }, home: { productDetails: '产品详情', - minimumDailyInterestRate: '最低日息', + minimumDailyInterestRate: '最低月息', borrowingLimit: '借款额度', installmentPeriod: '分期期限', optional: '可选', applicationAmount: '申请金额', loanTerm: '借款期限', repaymentPerInstallment: '每期还款', - dailyInterestRate: '日利率', + dailyInterestRate: '月利率', totalInterest: '总利息', successfulBorrowing: '成功借款', enterAgreement: '我已阅读并同意', diff --git a/src/views/index/home/index.vue b/src/views/index/home/index.vue index ebd7416..1e23cc3 100644 --- a/src/views/index/home/index.vue +++ b/src/views/index/home/index.vue @@ -17,7 +17,7 @@
{{$t('home.minimumDailyInterestRate')}}
-
{{ loans.minDayServiceRate }}%
+
{{ loans.minMonthRate }}%
{{$t('home.borrowingLimit')}}
@@ -65,7 +65,7 @@
{{ $t('home.repaymentPerInstallment') }}
{{ defaultCoinUnit }}{{ calLoan.avgRepayment }}
-
({{ $t('home.dailyInterestRate') }}{{ calLoan.loanRateDay*100 }}% {{ $t('home.totalInterest') }}{{ defaultCoinUnit }}{{ calLoan.totalInterest }})
+
({{ $t('home.dailyInterestRate') }}{{ calLoan.loanRateMonth*100 }}% {{ $t('home.totalInterest') }}{{ defaultCoinUnit }}{{ calLoan.totalInterest }})
diff --git a/vite.config.ts b/vite.config.ts index fc4a3cb..937a8a6 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -39,7 +39,7 @@ export default defineConfig({ proxy: { '/api': { target: ' http://dk.qiqizl.com', - // target: 'http://localhost:8887', + // target: 'http://localhost:8082', changeOrigin: true, ws: true, rewrite: (path) => path.replace(new RegExp(`^/api`), '/api'),