From c1829fe4aa1bcf2928433bb704e660c8aa908ab3 Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Wed, 5 Mar 2025 18:36:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=99=BA=E8=81=AA=E8=AE=B0=E8=B4=A6?= =?UTF-8?q?=E7=AE=A1=E7=90=86=EF=BC=8C=E5=82=A8=E8=93=84=E5=8D=A1=E5=BC=80?= =?UTF-8?q?=E5=8D=A1=E7=BB=9F=E8=AE=A1=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/invest/statisticAnalysis.js | 11 +- src/pages.json | 6 + .../accounts/openCardStatics/index.vue | 461 ++++++++++++++++++ src/pages/statistic/index.vue | 1 + 4 files changed, 478 insertions(+), 1 deletion(-) create mode 100644 src/pages/statistic/accounts/openCardStatics/index.vue 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 @@ + + + + + \ 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) {