-
-
-
-
-

-
-
-
储蓄卡可用余额
-
- {{ accountsBalance.debetBalance }}
-
-
-
-
-
-

-
-
-
信用卡可用额度
-
- {{ accountsBalance.creditAvailableLimit }}
-
-
-
-
-
-

-
-
-
信用卡余额
-
- {{ accountsBalance.creditBalance}}
-
-
-
-
-
-

-
-
-
投资账户余额
-
- {{ accountsBalance.investBalance }}
-
-
-
-
-
-

-
-
-
借贷账户余额
-
- {{ accountsBalance.debitBalance }}
-
-
-
+
+
+
-
-
记账账户查询统计
-
-
-
-
-
-
+
+
信用卡可用额度
+
+ {{ accountsBalance.creditAvailableLimit }}
-
-
-
-
-
-
- {{ scope.$index + 1 }}
-
-
-
-
-
-
+
+
+

+
+
+
信用卡余额
+
+ {{ accountsBalance.creditBalance }}
+
+
+
+
+
+

+
+
+
投资账户余额
+
+ {{ accountsBalance.investBalance }}
+
+
+
+
+
+

+
+
+
借贷账户余额
+
+ {{ accountsBalance.lendAccountBalance }}
+
+
+
+
+
+
记账账户查询统计
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.$index + 1 }}
+
+
+
+
+
+
+
diff --git a/src/views/invest/creditTransferRecord/index.vue b/src/views/invest/creditTransferRecord/index.vue
index 4e3d352..dffdd77 100644
--- a/src/views/invest/creditTransferRecord/index.vue
+++ b/src/views/invest/creditTransferRecord/index.vue
@@ -40,7 +40,7 @@
-
+
@@ -65,8 +65,8 @@
-
-
+
+
@@ -164,12 +164,14 @@ const data = reactive({
queryDebitParams: {
pageNum: 1,
type: '1',
+ repayFlag: '1',
status: '1',
+ state: '1',
pageSize: 1000
},
rules: {
inAccountId: [{ required: true, message: '信用卡不能为空', trigger: 'blur' }],
- outAccountId: [{ required: true, message: '储蓄卡不能为空', trigger: 'blur' }],
+ outAccountId: [{ required: true, message: '储蓄账户不能为空', trigger: 'blur' }],
amount: [{ required: true, message: '还款金额不能为空', trigger: 'blur' }],
dealType: [{ required: true, message: '还款方式不能为空', trigger: 'blur' }],
createTime: [{ required: true, message: '还款时间不能为空', trigger: 'blur' }]
@@ -201,7 +203,7 @@ function getcreditCardList() {
})
}
-/** 查询储蓄卡卡管理列表 */
+/** 查询储蓄账户卡管理列表 */
function getDebitList() {
listAccounts(queryDebitParams.value).then((response) => {
debitCardList.value = response.rows
diff --git a/src/views/invest/debitTransferRecord/index.vue b/src/views/invest/debitTransferRecord/index.vue
index de2a100..7e420fc 100644
--- a/src/views/invest/debitTransferRecord/index.vue
+++ b/src/views/invest/debitTransferRecord/index.vue
@@ -57,7 +57,7 @@