diff --git a/src/api/invest/statisticAnalysis.js b/src/api/invest/statisticAnalysis.js
index 3d02f20..d089ea1 100644
--- a/src/api/invest/statisticAnalysis.js
+++ b/src/api/invest/statisticAnalysis.js
@@ -98,7 +98,7 @@ export function getPosStatics(query) {
})
}
-// 查询记账账户列表
+// 查询睡眠账户列表
export function listSleepAccounts(query) {
return request({
url: '/invest/analysis/sleepAccountsList',
@@ -106,3 +106,12 @@ export function listSleepAccounts(query) {
params: query
})
}
+
+// 查询储蓄卡开卡统计数据
+export function getOpenCardList(query) {
+ return request({
+ url: '/invest/analysis/openCardList',
+ method: 'get',
+ params: query
+ })
+}
diff --git a/src/pages.json b/src/pages.json
index 65d0d83..efcd9bb 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -179,6 +179,12 @@
"style": {
"navigationBarTitleText": "睡眠账户统计"
}
+ },
+ {
+ "path": "pages/statistic/accounts/openCardStatics/index",
+ "style": {
+ "navigationBarTitleText": "储蓄卡开卡统计"
+ }
}
,
{
diff --git a/src/pages/statistic/accounts/openCardStatics/index.vue b/src/pages/statistic/accounts/openCardStatics/index.vue
new file mode 100644
index 0000000..a434e01
--- /dev/null
+++ b/src/pages/statistic/accounts/openCardStatics/index.vue
@@ -0,0 +1,461 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 开卡明细:
+ {{ formatMultiLineData(item.detail)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/statistic/index.vue b/src/pages/statistic/index.vue
index 1bb0249..7279647 100644
--- a/src/pages/statistic/index.vue
+++ b/src/pages/statistic/index.vue
@@ -81,6 +81,7 @@
{ path: '/pages/statistic/accounts/debitCardAnalysis/index', text: '结算卡统计', icon: 'shop-filled' , permission: 'invest:debitCardAnalysis:list' },
{ path: '/pages/statistic/accounts/posStatics/index', text: 'POS机统计', icon: 'shop-filled' , permission: 'invest:posStatics:list' },
{ path: '/pages/statistic/accounts/sleepAccounts/index', text: '睡眠账户统计', icon: 'cloud-upload' , permission: 'invest:debitCard' },
+ { path: '/pages/statistic/accounts/openCardStatics/index', text: '储蓄卡开卡统计', icon: 'map' , permission: 'invest:debitCard' },
])
function navigateTo(path) {