From dfbf1005dcbc59eb16ad377d118e967958508dc4 Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Wed, 31 Jul 2024 17:30:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=89=8D=E7=AB=AF=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=AE=8C=E5=96=84=E4=BC=98=E5=8C=96=E7=9B=B8=E5=85=B3=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/invest/installmentHistory.js | 10 ++--- src/views/invest/accountAnalysis/index.vue | 42 +++++++++---------- .../invest/accountDealAnalysis/index.vue | 2 +- src/views/invest/accountDealRecord/index.vue | 4 +- src/views/invest/accounts/index.vue | 2 +- src/views/invest/creditCardBill/index.vue | 4 +- .../invest/creditInstallmentHistory/index.vue | 4 +- src/views/invest/creditQueryRecord/index.vue | 6 +-- .../invest/creditTransferRecord/index.vue | 2 +- src/views/invest/creditcard/index.vue | 4 +- src/views/invest/debitInfors/index.vue | 2 +- .../invest/debitTransferRecord/index.vue | 2 +- src/views/invest/debitcard/index.vue | 2 +- src/views/invest/futures/index.vue | 2 +- src/views/invest/futuresBill/index.vue | 4 +- src/views/invest/heartJourney/index.vue | 2 +- src/views/invest/investAccountDeal/index.vue | 4 +- .../invest/investTransferRecord/index.vue | 2 +- src/views/invest/lend/index.vue | 14 +++---- src/views/invest/lendTransferRecord/index.vue | 2 +- src/views/invest/onlineLendAnalysis/index.vue | 14 +++---- src/views/invest/onlineLendHistory/index.vue | 30 ++++++------- .../onlineLendSettledAnalysis/index.vue | 12 +++--- src/views/invest/peopleLendHistory/index.vue | 32 +++++++------- src/views/invest/posTransferRecord/index.vue | 2 +- src/views/invest/posmachine/index.vue | 4 +- src/views/invest/stocks/index.vue | 6 +-- src/views/invest/stocksBill/index.vue | 4 +- vite.config.js | 4 +- 29 files changed, 112 insertions(+), 112 deletions(-) diff --git a/src/api/invest/installmentHistory.js b/src/api/invest/installmentHistory.js index ad657b7..6e0c0c7 100644 --- a/src/api/invest/installmentHistory.js +++ b/src/api/invest/installmentHistory.js @@ -1,6 +1,6 @@ import request from '@/utils/request' -// 查询网贷及分期历史列表 +// 查询贷款及分期历史列表 export function listInstallmentHistory(query) { return request({ url: '/invest/installmentHistory/list', @@ -9,7 +9,7 @@ export function listInstallmentHistory(query) { }) } -// 查询网贷及分期历史详细 +// 查询贷款及分期历史详细 export function getInstallmentHistory(id) { return request({ url: '/invest/installmentHistory/' + id, @@ -17,7 +17,7 @@ export function getInstallmentHistory(id) { }) } -// 新增网贷及分期历史 +// 新增贷款及分期历史 export function addInstallmentHistory(data) { return request({ url: '/invest/installmentHistory', @@ -26,7 +26,7 @@ export function addInstallmentHistory(data) { }) } -// 修改网贷及分期历史 +// 修改贷款及分期历史 export function updateInstallmentHistory(data) { return request({ url: '/invest/installmentHistory', @@ -35,7 +35,7 @@ export function updateInstallmentHistory(data) { }) } -// 删除网贷及分期历史 +// 删除贷款及分期历史 export function delInstallmentHistory(id) { return request({ url: '/invest/installmentHistory/' + id, diff --git a/src/views/invest/accountAnalysis/index.vue b/src/views/invest/accountAnalysis/index.vue index eb660df..69da179 100644 --- a/src/views/invest/accountAnalysis/index.vue +++ b/src/views/invest/accountAnalysis/index.vue @@ -45,7 +45,7 @@
-
未结清网贷本息
+
未结清贷款本息
{{ unClearedOnlineDebt }}
@@ -306,14 +306,14 @@
-
网贷账户
+
贷款账户
{{ onlineLendCount }}
-
未结清网贷本息
+
未结清贷款本息
{{ unClearedOnlineDebt }}
@@ -359,21 +359,21 @@
-
未结清网贷
+
未结清贷款
{{ unclearedOnlineDebtCount }}
-
未结清网贷本金
+
未结清贷款本金
{{ unClearedOnlineDebtPrinciple }}
-
未结清网贷利息
+
未结清贷款利息
{{ unClearedOnlineDebtInterest }}
@@ -382,21 +382,21 @@
-
已结清网贷
+
已结清贷款
{{ clearedOnlineDebtCount }}
-
已结清网贷本金
+
已结清贷款本金
{{ clearedOnlineDebtPrinciple }}
-
已结清网贷利息
+
已结清贷款利息
{{ clearedOnlineDebtInterest }}
@@ -688,18 +688,18 @@ const debitTotalBalance = ref(0) //储蓄账户余额 //借贷账户信息 const peopleLendHistory = ref(0) //人情借贷余额 const peopleLendCount = ref(0) //人情账户 -const onlineLendCount = ref(0) //网贷账户 -const unclearedOnlineDebtCount = ref(0) //未结清网贷账户数 -const unClearedOnlineDebt = ref(0) //未结清网贷本息 -const unClearedOnlineDebtPrinciple = ref(0) //未结清网贷本金 -const unClearedOnlineDebtInterest = ref(0) //未结清网贷利息 -const clearedOnlineDebtCount = ref(0) //已结清网贷账户数 -const clearedOnlineDebt = ref(0) //已结清网贷本息 -const clearedOnlineDebtPrinciple = ref(0) //已结清网贷本金 -const clearedOnlineDebtInterest = ref(0) //已结清网贷利息 -const dueOnlineDebt = ref(0) //本月应还网贷 -const repaidOnlineDebt = ref(0) //本月已还网贷 -const leftOnlineDebt = ref(0) //本月剩余应还网贷 +const onlineLendCount = ref(0) //贷款账户 +const unclearedOnlineDebtCount = ref(0) //未结清贷款账户数 +const unClearedOnlineDebt = ref(0) //未结清贷款本息 +const unClearedOnlineDebtPrinciple = ref(0) //未结清贷款本金 +const unClearedOnlineDebtInterest = ref(0) //未结清贷款利息 +const clearedOnlineDebtCount = ref(0) //已结清贷款账户数 +const clearedOnlineDebt = ref(0) //已结清贷款本息 +const clearedOnlineDebtPrinciple = ref(0) //已结清贷款本金 +const clearedOnlineDebtInterest = ref(0) //已结清贷款利息 +const dueOnlineDebt = ref(0) //本月应还贷款 +const repaidOnlineDebt = ref(0) //本月已还贷款 +const leftOnlineDebt = ref(0) //本月剩余应还贷款 //信用卡信息 const creditInstallmentHistory = ref(0) diff --git a/src/views/invest/accountDealAnalysis/index.vue b/src/views/invest/accountDealAnalysis/index.vue index 27202ee..26f7aaa 100644 --- a/src/views/invest/accountDealAnalysis/index.vue +++ b/src/views/invest/accountDealAnalysis/index.vue @@ -157,7 +157,7 @@
-
网贷利息
+
贷款利息
{{ account.onLineInterest }}
diff --git a/src/views/invest/accountDealRecord/index.vue b/src/views/invest/accountDealRecord/index.vue index b325184..1c8b6cb 100644 --- a/src/views/invest/accountDealRecord/index.vue +++ b/src/views/invest/accountDealRecord/index.vue @@ -37,8 +37,8 @@
基本信息
新增 - 删除 - 导出 + +
diff --git a/src/views/invest/accounts/index.vue b/src/views/invest/accounts/index.vue index b76cd03..87abebf 100644 --- a/src/views/invest/accounts/index.vue +++ b/src/views/invest/accounts/index.vue @@ -33,7 +33,7 @@
- 导出 +
diff --git a/src/views/invest/creditCardBill/index.vue b/src/views/invest/creditCardBill/index.vue index dbeedec..4f3ad20 100644 --- a/src/views/invest/creditCardBill/index.vue +++ b/src/views/invest/creditCardBill/index.vue @@ -28,7 +28,7 @@
新增 删除 - 导出 +
@@ -63,7 +63,7 @@
- + diff --git a/src/views/invest/creditInstallmentHistory/index.vue b/src/views/invest/creditInstallmentHistory/index.vue index 49190b9..f9c951b 100644 --- a/src/views/invest/creditInstallmentHistory/index.vue +++ b/src/views/invest/creditInstallmentHistory/index.vue @@ -25,7 +25,7 @@
新增 - 导出 +
@@ -298,7 +298,7 @@ const data = reactive({ }, rulesDetail: { installmentHistoryId: [{ required: true, message: '分期历史id不能为空', trigger: 'blur' }], - bankCardLendId: [{ required: true, message: '信用卡网贷不能为空', trigger: 'blur' }], + bankCardLendId: [{ required: true, message: '信用卡不能为空', trigger: 'blur' }], repaymentDate: [{ required: true, message: '入账日期不能为空', trigger: 'blur' }], principal: [{ required: true, message: '应还本金不能为空', trigger: 'blur' }], periods: [{ required: true, message: '还款期数不能为空', trigger: 'blur' }], diff --git a/src/views/invest/creditQueryRecord/index.vue b/src/views/invest/creditQueryRecord/index.vue index 9c58c82..f04e60a 100644 --- a/src/views/invest/creditQueryRecord/index.vue +++ b/src/views/invest/creditQueryRecord/index.vue @@ -35,7 +35,7 @@
新增 删除 - 导出 + 查询记录统计
@@ -75,7 +75,7 @@
- + @@ -102,7 +102,7 @@ - + diff --git a/src/views/invest/creditTransferRecord/index.vue b/src/views/invest/creditTransferRecord/index.vue index dffdd77..51b58f5 100644 --- a/src/views/invest/creditTransferRecord/index.vue +++ b/src/views/invest/creditTransferRecord/index.vue @@ -33,7 +33,7 @@ @click="handleDelete" v-hasPermi="['invest:accountsTransferRecord:remove']" >删除 --> - 导出 +
diff --git a/src/views/invest/creditcard/index.vue b/src/views/invest/creditcard/index.vue index 1b5e16c..c1f3608 100644 --- a/src/views/invest/creditcard/index.vue +++ b/src/views/invest/creditcard/index.vue @@ -23,7 +23,7 @@
新增 删除 - 导出 +
@@ -130,7 +130,7 @@ - + diff --git a/src/views/invest/debitInfors/index.vue b/src/views/invest/debitInfors/index.vue index ebf6fa3..9486596 100644 --- a/src/views/invest/debitInfors/index.vue +++ b/src/views/invest/debitInfors/index.vue @@ -26,7 +26,7 @@
新增 删除 - 导出 +
diff --git a/src/views/invest/debitTransferRecord/index.vue b/src/views/invest/debitTransferRecord/index.vue index 7e420fc..adeab3f 100644 --- a/src/views/invest/debitTransferRecord/index.vue +++ b/src/views/invest/debitTransferRecord/index.vue @@ -33,7 +33,7 @@ @click="handleDelete" v-hasPermi="['invest:accountsTransferRecord:remove']" >删除 --> - 导出 +
diff --git a/src/views/invest/debitcard/index.vue b/src/views/invest/debitcard/index.vue index 4410216..578f279 100644 --- a/src/views/invest/debitcard/index.vue +++ b/src/views/invest/debitcard/index.vue @@ -28,7 +28,7 @@
新增 删除 - 导出 +
diff --git a/src/views/invest/futures/index.vue b/src/views/invest/futures/index.vue index 06e2455..4fb8105 100644 --- a/src/views/invest/futures/index.vue +++ b/src/views/invest/futures/index.vue @@ -23,7 +23,7 @@
新增 删除 - 导出 +
diff --git a/src/views/invest/futuresBill/index.vue b/src/views/invest/futuresBill/index.vue index 9450ec2..22ef964 100644 --- a/src/views/invest/futuresBill/index.vue +++ b/src/views/invest/futuresBill/index.vue @@ -23,7 +23,7 @@
新增 删除 - 导出 +
@@ -48,7 +48,7 @@
- + diff --git a/src/views/invest/heartJourney/index.vue b/src/views/invest/heartJourney/index.vue index 4072dcf..2b7f528 100644 --- a/src/views/invest/heartJourney/index.vue +++ b/src/views/invest/heartJourney/index.vue @@ -23,7 +23,7 @@
新增 删除 - 导出 +
diff --git a/src/views/invest/investAccountDeal/index.vue b/src/views/invest/investAccountDeal/index.vue index 08ef7a5..0dfdd79 100644 --- a/src/views/invest/investAccountDeal/index.vue +++ b/src/views/invest/investAccountDeal/index.vue @@ -27,8 +27,8 @@
基本信息
新增 - 删除 - 导出 + +
diff --git a/src/views/invest/investTransferRecord/index.vue b/src/views/invest/investTransferRecord/index.vue index a6e4d96..a1b0f63 100644 --- a/src/views/invest/investTransferRecord/index.vue +++ b/src/views/invest/investTransferRecord/index.vue @@ -33,7 +33,7 @@ @click="handleDelete" v-hasPermi="['invest:accountsTransferRecord:remove']" >删除 --> - 导出 +
diff --git a/src/views/invest/lend/index.vue b/src/views/invest/lend/index.vue index c237864..ab7432a 100644 --- a/src/views/invest/lend/index.vue +++ b/src/views/invest/lend/index.vue @@ -28,7 +28,7 @@
新增 删除 - 导出 +
@@ -60,7 +60,7 @@
- + @@ -89,7 +89,7 @@ -