diff --git a/src/views/invest/accountAnalysis/index.vue b/src/views/invest/accountAnalysis/index.vue index 441ed4b..561cb9f 100644 --- a/src/views/invest/accountAnalysis/index.vue +++ b/src/views/invest/accountAnalysis/index.vue @@ -113,7 +113,7 @@
-
未结清网贷笔数
+
未结清网贷
{{ unclearedOnlineDebtCount }}
@@ -136,7 +136,7 @@
-
已结清网贷笔数
+
已结清网贷
{{ clearedOnlineDebtCount }}
@@ -214,7 +214,7 @@
-
未结清分期笔数
+
未结清分期
{{ unclearedCreditInstallmentCount }}
@@ -244,7 +244,7 @@
-
已结清分期笔数
+
已结清分期
{{ clearedCreditInstallmentCount }}
@@ -306,28 +306,28 @@
-
近1月硬查询次数
+
近1月硬查询
{{ lastOneMonths }}
-
近2月硬查询次数
+
近2月硬查询
{{ lastTwoMonths }}
-
近3月硬查询次数
+
近3月硬查询
{{ lastThreeMonths }}
-
近6月硬查询次数
+
近6月硬查询
{{ lastSixMonths }}
@@ -336,21 +336,21 @@
-
近1年硬查询次数
+
近1年硬查询
{{ lastOneYears }}
-
近2年硬查询次数
+
近2年硬查询
{{ lastTwoYears }}
-
总硬查询次数
+
总硬查询
{{ lastAllYears }}
@@ -359,28 +359,28 @@
-
近6月个人查询次数
+
近6月个人查询
{{ lastSixMonthQueryCount }}
-
近6月贷后管理次数
+
近6月贷后管理
{{ lastSixMonthsAfterLoan }}
-
近2年贷后管理次数
+
近2年贷后管理
{{ lastTwoYearsAfterLoan }}
-
贷后管理总次数
+
贷后管理总数
{{ totalAfterLoan }}
@@ -396,23 +396,37 @@
-
POS机总数
+
POS机
{{ posCount }}
-
信用卡总数
+
信用卡账户
{{ creditCount }}
-
+ +
+ +
+
I类储蓄卡
+
{{ debitICount }}
+
+
+
+ +
+
II类储蓄卡
+
{{ debitIICount }}
+
@@ -420,28 +434,28 @@
-
股票账户总数
+
股票账户
{{ stocksCount }}
-
期货账户总数
+
期货账户
{{ futuresCount }}
-
人情总数
+
人情账户
{{ peopleLendCount }}
-
网贷总数
+
网贷账户
{{ onlineLendCount }}
@@ -463,6 +477,8 @@ const investBalance = ref(0) //基础信息 const posCount = ref(0) const debitCount = ref(0) +const debitICount = ref(0) +const debitIICount = ref(0) const stocksCount = ref(0) const futuresCount = ref(0) const peopleLendCount = ref(0) @@ -537,6 +553,8 @@ const getBaseAccountInfoData = () => { posCount.value = res.data.posCount creditCount.value = res.data.creditCount debitCount.value = res.data.debitCount + debitICount.value = res.data.debitICount + debitIICount.value = res.data.debitIICount stocksCount.value = res.data.stocksCount futuresCount.value = res.data.futuresCount peopleLendCount.value = res.data.peopleLendCount diff --git a/src/views/invest/accountDealRecord/index.vue b/src/views/invest/accountDealRecord/index.vue index 36e3215..b325184 100644 --- a/src/views/invest/accountDealRecord/index.vue +++ b/src/views/invest/accountDealRecord/index.vue @@ -181,7 +181,7 @@ const data = reactive({ queryAddAccountParams: { pageNum: 1, type: '', - state: '1', + status: '1', pageSize: 1000 }, rules: { diff --git a/src/views/invest/accounts/index.vue b/src/views/invest/accounts/index.vue index 2bf9ec7..ba0b7b1 100644 --- a/src/views/invest/accounts/index.vue +++ b/src/views/invest/accounts/index.vue @@ -41,6 +41,11 @@ + + + @@ -52,7 +57,7 @@ - + @@ -90,8 +95,8 @@ - - + + @@ -193,13 +198,14 @@ import { listAccountsTransferRecord } from '@/api/invest/accountsTransferRecord' import { require } from '@/utils/require' import dayjs from 'dayjs' const { proxy } = getCurrentInstance() -const { account_state, account_type, deal_type, deal_category, debit_type, transfer_type } = proxy.useDict( +const { account_state, account_type, deal_type, deal_category, debit_type, transfer_type, account_status } = proxy.useDict( 'account_state', 'account_type', 'deal_type', 'deal_category', 'debit_type', - 'transfer_type' + 'transfer_type', + 'account_status' ) const accountsList = ref([]) const open = ref(false) @@ -257,6 +263,7 @@ const data = reactive({ rules: { name: [{ required: true, message: '名称不能为空', trigger: 'blur' }], type: [{ required: true, message: '账户类型不能为空', trigger: 'change' }], + status: [{ required: true, message: '账户状态不能为空', trigger: 'blur' }], code: [{ required: true, message: '账号不能为空', trigger: 'blur' }], balance: [{ required: true, message: '余额不能为空', trigger: 'blur' }] } @@ -324,7 +331,8 @@ function reset() { delFlag: null, remark: null, accountId: null, - state: null + state: null, + status: null } proxy.resetForm('accountsRef') } diff --git a/src/views/invest/creditCardBill/index.vue b/src/views/invest/creditCardBill/index.vue index 24b0fbf..dbeedec 100644 --- a/src/views/invest/creditCardBill/index.vue +++ b/src/views/invest/creditCardBill/index.vue @@ -200,6 +200,7 @@ const data = reactive({ queryCreditCardParams: { pageNum: 1, type: '2', + status: '1', pageSize: 100 }, rules: { diff --git a/src/views/invest/creditInstallmentAnalysis/index.vue b/src/views/invest/creditInstallmentAnalysis/index.vue index 250c260..02415ab 100644 --- a/src/views/invest/creditInstallmentAnalysis/index.vue +++ b/src/views/invest/creditInstallmentAnalysis/index.vue @@ -204,6 +204,7 @@ const data = reactive({ queryCreditCardParams: { pageNum: 1, type: '2', + status: '1', pageSize: 1000 }, rules: { diff --git a/src/views/invest/creditInstallmentHistory/index.vue b/src/views/invest/creditInstallmentHistory/index.vue index 6f2bb6a..8a8b98b 100644 --- a/src/views/invest/creditInstallmentHistory/index.vue +++ b/src/views/invest/creditInstallmentHistory/index.vue @@ -79,8 +79,8 @@ - - + + @@ -282,6 +282,7 @@ const data = reactive({ queryCreditCardParams: { pageNum: 1, type: '2', + status: '1', pageSize: 1000 }, rules: { diff --git a/src/views/invest/creditTransferRecord/index.vue b/src/views/invest/creditTransferRecord/index.vue index 960e6ee..4e3d352 100644 --- a/src/views/invest/creditTransferRecord/index.vue +++ b/src/views/invest/creditTransferRecord/index.vue @@ -158,13 +158,13 @@ const data = reactive({ queryCreditParams: { pageNum: 1, type: '2', - state: '1', + status: '1', pageSize: 1000 }, queryDebitParams: { pageNum: 1, type: '1', - state: '1', + status: '1', pageSize: 1000 }, rules: { diff --git a/src/views/invest/creditcard/index.vue b/src/views/invest/creditcard/index.vue index fb43843..505abe2 100644 --- a/src/views/invest/creditcard/index.vue +++ b/src/views/invest/creditcard/index.vue @@ -6,6 +6,11 @@ + + + + +
搜索 @@ -45,10 +50,15 @@ - + + +