diff --git a/src/views/invest/accountAnalysis/index.vue b/src/views/invest/accountAnalysis/index.vue index 6fc2793..650bcab 100644 --- a/src/views/invest/accountAnalysis/index.vue +++ b/src/views/invest/accountAnalysis/index.vue @@ -17,7 +17,7 @@
- +
储蓄卡余额
{{ debetBalance }}
@@ -26,21 +26,21 @@
- +
网贷欠款
{{ unClearedOnlineDebt }}
- +
信用卡已使用额度
{{ creditBalance }}
- +
人情欠款
{{ peopleLendHistory }}
@@ -79,36 +79,6 @@
    网贷信息
-
-
- -
-
未结清网贷笔数
-
{{ unclearedOnlineDebtCount }}
-
-
-
- -
-
未结清网贷(本息)
-
{{ unClearedOnlineDebt }}
-
-
-
- -
-
已结清网贷笔数
-
{{ clearedOnlineDebtCount }}
-
-
-
- -
-
已结清网贷(本息)
-
{{ clearedOnlineDebt }}
-
-
-
@@ -132,6 +102,53 @@
+
+
+ +
+
未结清网贷笔数
+
{{ unclearedOnlineDebtCount }}
+
+
+
+ +
+
未结清网贷本金
+
{{ unClearedOnlineDebtPrinciple }}
+
+
+
+ +
+
未结清网贷利息
+
{{ unClearedOnlineDebtInterest }}
+
+
+
+
+
+ +
+
已结清网贷笔数
+
{{ clearedOnlineDebtCount }}
+
+
+
+ +
+
已结清网贷本金
+
{{ clearedOnlineDebtPrinciple }}
+
+
+
+ +
+
已结清网贷利息
+
{{ clearedOnlineDebtInterest }}
+
+
+
+
    信用卡信息
@@ -163,36 +180,6 @@
-
-
- -
-
近6个月账单平均使用额度
-
{{ lastSixMonthUsedLimit }}
-
-
-
- -
-
近6个月账单使用率
-
{{ lastSixMonthUsedRate }}%
-
-
-
- -
-
上月账单使用率
-
{{ lastMonthUsedRate }}%
-
-
-
- -
-
上月账单
-
{{ lastMonthUsedLimit }}
-
-
-
@@ -201,13 +188,6 @@
{{ creditBillRate }}%
-
- -
-
信用卡分期欠款
-
{{ creditInstallmentHistory }}
-
-
@@ -218,11 +198,102 @@
-
当月分期
+
当月分期本息
{{ creditInstallment }}
+
+
+ +
+
未结清分期笔数
+
{{ unclearedCreditInstallmentCount }}
+
+
+
+ +
+
未结清分期本息
+
{{ unclearedCreditInstallment }}
+
+
+
+ +
+
未结清分期本金
+
{{ unclearedCreditInstallmentPrinciple }}
+
+
+
+ +
+
未结清分期利息
+
{{ unclearedCreditInstallmentInterest }}
+
+
+
+
+
+ +
+
已结清分期笔数
+
{{ clearedCreditInstallmentCount }}
+
+
+
+ +
+
已结清分期本息
+
{{ clearedCreditInstallmentDebt }}
+
+
+
+ +
+
已结清分期本金
+
{{ clearedCreditInstallmentPrinciple }}
+
+
+
+ +
+
已结清分期利息
+
{{ clearedCreditInstallmentInterest }}
+
+
+
+
+
+ +
+
上月账单使用率
+
{{ lastMonthUsedRate }}%
+
+
+
+ +
+
上月账单
+
{{ lastMonthUsedLimit }}
+
+
+
+ +
+
近6个月账单使用率
+
{{ lastSixMonthUsedRate }}%
+
+
+
+ +
+
近6个月账单平均使用额度
+
{{ lastSixMonthUsedLimit }}
+
+
+
+
    征信信息
@@ -395,8 +466,12 @@ const netAsset = 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) @@ -413,6 +488,14 @@ const lastMonthUsedRate = ref(0) const creditBalance = ref(0) const creditAvailableLimit = ref(0) const creditBillRate = ref(0) +const unclearedCreditInstallmentCount = ref(0) +const unclearedCreditInstallment = ref(0) +const unclearedCreditInstallmentPrinciple = ref(0) +const unclearedCreditInstallmentInterest = ref(0) +const clearedCreditInstallmentCount = ref(0) +const clearedCreditInstallmentDebt = ref(0) +const clearedCreditInstallmentPrinciple = ref(0) +const clearedCreditInstallmentInterest = ref(0) //征信信息 const lastOneMonths = ref(0) @@ -460,6 +543,14 @@ const getCreditInfoData = () => { creditBalance.value = res.data.creditBalance creditAvailableLimit.value = res.data.creditAvailableLimit creditBillRate.value = res.data.creditBillRate + unclearedCreditInstallmentCount.value = res.data.unclearedCreditInstallmentCount + unclearedCreditInstallment.value = res.data.unclearedCreditInstallment + unclearedCreditInstallmentPrinciple.value = res.data.unclearedCreditInstallmentPrinciple + unclearedCreditInstallmentInterest.value = res.data.unclearedCreditInstallmentInterest + clearedCreditInstallmentCount.value = res.data.clearedCreditInstallmentCount + clearedCreditInstallmentDebt.value = res.data.clearedCreditInstallmentDebt + clearedCreditInstallmentPrinciple.value = res.data.clearedCreditInstallmentPrinciple + clearedCreditInstallmentInterest.value = res.data.clearedCreditInstallmentInterest }) } const getDebetInfoData = () => { @@ -476,6 +567,10 @@ const getDebetInfoData = () => { dueOnlineDebt.value = res.data.dueOnlineDebt repaidOnlineDebt.value = res.data.repaidOnlineDebt leftOnlineDebt.value = res.data.leftOnlineDebt + unClearedOnlineDebtPrinciple.value = res.data.unClearedOnlineDebtPrinciple + unClearedOnlineDebtInterest.value = res.data.unClearedOnlineDebtInterest + clearedOnlineDebtPrinciple.value = res.data.clearedOnlineDebtPrinciple + clearedOnlineDebtInterest.value = res.data.clearedOnlineDebtInterest }) } const getCreditRecordAnalysisData = () => { diff --git a/src/views/invest/creditCardDealAnalysis/index.vue b/src/views/invest/creditCardDealAnalysis/index.vue index f6127e5..388a07b 100644 --- a/src/views/invest/creditCardDealAnalysis/index.vue +++ b/src/views/invest/creditCardDealAnalysis/index.vue @@ -65,7 +65,7 @@
-
+
@@ -104,9 +104,9 @@
-
支出笔数
+
收入笔数
- {{ account.expensesCount }} + {{ account.incomeCount }}
@@ -115,14 +115,71 @@
-
收入笔数
+
支出笔数
- {{ account.incomeCount }} + {{ account.expensesCount }}
-
+
+
+
+ +
+
+
POS刷卡支出
+
+ {{ account.posExpenses }} +
+
+
+
+
+ +
+
+
真实消费支出
+
+ {{ account.realExpenses }} +
+
+
+
+
+ +
+
+
POS刷卡笔数
+
+ {{ account.posExpensesCount }} +
+
+
+
+
+ +
+
+
真实消费支出笔数
+
+ {{ account.realExpensesCount }} +
+
+
+
+
+ +
+
+
其他支出笔数
+
+ {{ account.otherExpensesCount }} +
+
+
+
+
信用卡收支统计
@@ -133,9 +190,9 @@
-
-
- +
+
+