diff --git a/src/api/invest/statisticAnalysis.js b/src/api/invest/statisticAnalysis.js
index d089ea1..8695394 100644
--- a/src/api/invest/statisticAnalysis.js
+++ b/src/api/invest/statisticAnalysis.js
@@ -115,3 +115,12 @@ export function getOpenCardList(query) {
params: query
})
}
+
+// 查询按银行统计银行卡数量
+export function getBankCardStatistics(query) {
+ return request({
+ url: '/invest/analysis/bankCardStatistics',
+ method: 'get',
+ params: query
+ })
+}
diff --git a/src/pages.json b/src/pages.json
index 3b38345..d9a0e75 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -214,6 +214,14 @@
}
}
,
+ {
+ "path": "pages/statistic/accounts/bankCardStatistics/index",
+ "style": {
+ "navigationBarTitleText": "银行卡数量统计",
+ "disableScroll": true
+ }
+ }
+ ,
{
"path": "pages/statistic/accounts/accountDealAnalysis/index",
"style": {
diff --git a/src/pages/statistic/accounts/bankCardStatistics/index.vue b/src/pages/statistic/accounts/bankCardStatistics/index.vue
new file mode 100644
index 0000000..a1df454
--- /dev/null
+++ b/src/pages/statistic/accounts/bankCardStatistics/index.vue
@@ -0,0 +1,452 @@
+
+
+
+
+
+
+
+
+
+ 银行总数
+ {{ totalStats.bankCount || 0 }}行
+
+
+
+
+
+
+
+ 卡片总数
+ {{ totalStats.cardCount || 0 }}卡
+
+
+
+
+
+
+
+ 信用卡总数
+ {{ totalStats.creditCardBanksCount || 0 }}行{{ totalStats.creditCardCount || 0 }}卡
+
+
+
+
+
+
+
+ 储蓄卡总数
+ {{ totalStats.debitCardBanksCount || 0 }}行{{ totalStats.debitCardCount || 0 }}卡
+
+
+
+
+
+
+
+ I类储蓄卡总数
+ {{ totalStats.debitTypeOneCount || 0 }}卡
+
+
+
+
+
+
+
+ II类储蓄卡总数
+ {{ totalStats.debitTypeTwoCount || 0 }}卡
+
+
+
+
+
+
+
+ 银行卡数量统计
+
+
+
+
+
+
+
+
+ 信用卡数量:
+ {{ item.creditCardCount || 0 }}
+
+
+ 储蓄卡总数:
+ {{ item.debitCardCount || 0 }}
+
+
+ └ I类储蓄卡:
+ {{ item.debitTypeOneCount || 0 }}
+
+
+ └ II类储蓄卡:
+ {{ item.debitTypeTwoCount || 0 }}
+
+
+
+
+
+
+
+
+
+ 暂无数据
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/statistic/index.vue b/src/pages/statistic/index.vue
index 30abe33..131a8bf 100644
--- a/src/pages/statistic/index.vue
+++ b/src/pages/statistic/index.vue
@@ -83,6 +83,7 @@
{ path: '/pages/statistic/accounts/debitDealAnalysis/index', text: '储蓄账户统计', icon: 'paperplane', color: 'linear-gradient(135deg, #00b4db 0%, #0083b0 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/sleepAccounts/index', text: '睡眠账户统计', icon: 'eye-slash-filled', color: 'linear-gradient(135deg, #636e72 0%, #2d3436 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/openCardStatics/index', text: '储蓄卡开卡统计', icon: 'gift-filled', color: 'linear-gradient(135deg, #fd79a8 0%, #e84393 100%)', permission: 'invest:debitCard' },
+ { path: '/pages/statistic/accounts/bankCardStatistics/index', text: '银行卡数量统计', icon: 'wallet-filled', color: 'linear-gradient(135deg, #00b4db 0%, #0083b0 100%)', permission: 'invest:bankCardStatistics:list' },
{ path: '/pages/statistic/accounts/dailyLiabilities/index', text: '每日净资产统计', icon: 'bars', color: 'linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%)', permission: 'invest:dailyLiabilities:list' },
{ path: '/pages/statistic/accounts/debitCardAnalysis/index', text: '结算卡统计', icon: 'star', color: 'linear-gradient(135deg, #fa8231 0%, #f7971e 100%)', permission: 'invest:debitCardAnalysis:list' },
{ path: '/pages/statistic/accounts/posStatics/index', text: 'POS机统计', icon: 'navigate-filled', color: 'linear-gradient(135deg, #0be881 0%, #0fbcf9 100%)', permission: 'invest:posmachine:list' },