diff --git a/src/api/invest/statisticAnalysis.js b/src/api/invest/statisticAnalysis.js
index e541527..25d7f13 100644
--- a/src/api/invest/statisticAnalysis.js
+++ b/src/api/invest/statisticAnalysis.js
@@ -79,4 +79,21 @@ export function getDailyExpensesAnalysis(query) {
method: 'get',
params: query
})
-}
\ No newline at end of file
+}
+
+
+export function getDebitCardAnalysis(query) {
+ return request({
+ url: '/invest/analysis/debitCardAnalysis',
+ method: 'get',
+ params: query
+ })
+}
+
+export function getPosStatics(query) {
+ return request({
+ url: '/invest/analysis/posStatics',
+ method: 'get',
+ params: query
+ })
+}
diff --git a/src/pages.json b/src/pages.json
index 1aa70cb..b1f8207 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -79,7 +79,20 @@
"style": {
"navigationBarTitleText": "记账账户统计"
}
- },{
+ },
+ {
+ "path": "pages/statistic/accounts/debitCardAnalysis/index",
+ "style": {
+ "navigationBarTitleText": "结算卡统计"
+ }
+ } ,
+ {
+ "path": "pages/statistic/accounts/posStatics/index",
+ "style": {
+ "navigationBarTitleText": "POS机统计"
+ }
+ } ,
+ {
"path": "pages/statistic/bill/creditRecordAnalysis/index",
"style": {
"navigationBarTitleText": "征信查询统计"
diff --git a/src/pages/statistic/accounts/debitCardAnalysis/index.vue b/src/pages/statistic/accounts/debitCardAnalysis/index.vue
new file mode 100644
index 0000000..7ae0d2a
--- /dev/null
+++ b/src/pages/statistic/accounts/debitCardAnalysis/index.vue
@@ -0,0 +1,516 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 今日结算次数:
+ {{ item.todayCount }} 次
+
+
+ 今日收款金额:
+ {{ item.todayAmount }} 元
+
+
+ 近7日结算次数:
+ {{ item.sevenDayCount }} 次
+
+
+ 近7日收款金额:
+ {{ item.sevenDayAmount }} 元
+
+
+ 近1月结算次数:
+ {{ item.oneMonthCount }} 次
+
+
+ 近1月收款金额:
+ {{ item.oneMonthAmount }} 元
+
+
+ 近3月结算次数:
+ {{ item.threeMonthCount }} 次
+
+
+ 近3月收款金额:
+ {{ item.threeMonthAmount }} 元
+
+
+ 近6月结算次数:
+ {{ item.sixMonthCount }} 次
+
+
+ 近6月收款金额:
+ {{ item.sixMonthAmount }} 元
+
+
+ 近1年结算次数:
+ {{ item.oneYearCount }} 次
+
+
+ 近1年收款金额:
+ {{ item.oneYearAmount }} 元
+
+
+ 近2年结算次数:
+ {{ item.twoYearCount }} 次
+
+
+ 近2年收款金额:
+ {{ item.twoYearAmount }} 元
+
+
+ 近5年结算次数:
+ {{ item.fiveYearCount }} 次
+
+
+ 近5年收款金额:
+ {{ item.fiveYearAmount }} 元
+
+
+ 总结算次数:
+ {{ item.totalCount }} 次
+
+
+ 总收款金额:
+ {{ item.totalAmount }} 元
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/statistic/accounts/posStatics/index.vue b/src/pages/statistic/accounts/posStatics/index.vue
new file mode 100644
index 0000000..606ed2e
--- /dev/null
+++ b/src/pages/statistic/accounts/posStatics/index.vue
@@ -0,0 +1,516 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 今日交易次数:
+ {{ item.todayCount }} 次
+
+
+ 今日刷卡金额:
+ {{ item.todayAmount }} 元
+
+
+ 近7日交易次数:
+ {{ item.sevenDayCount }} 次
+
+
+ 近7日刷卡金额:
+ {{ item.sevenDayAmount }} 元
+
+
+ 近1月交易次数:
+ {{ item.oneMonthCount }} 次
+
+
+ 近1月刷卡金额:
+ {{ item.oneMonthAmount }} 元
+
+
+ 近3月交易次数:
+ {{ item.threeMonthCount }} 次
+
+
+ 近3月刷卡金额:
+ {{ item.threeMonthAmount }} 元
+
+
+ 近6月交易次数:
+ {{ item.sixMonthCount }} 次
+
+
+ 近6月刷卡金额:
+ {{ item.sixMonthAmount }} 元
+
+
+ 近1年交易次数:
+ {{ item.oneYearCount }} 次
+
+
+ 近1年刷卡金额:
+ {{ item.oneYearAmount }} 元
+
+
+ 近2年交易次数:
+ {{ item.twoYearCount }} 次
+
+
+ 近2年刷卡金额:
+ {{ item.twoYearAmount }} 元
+
+
+ 近5年交易次数:
+ {{ item.fiveYearCount }} 次
+
+
+ 近5年刷卡金额:
+ {{ item.fiveYearAmount }} 元
+
+
+ 总交易次数:
+ {{ item.totalCount }} 次
+
+
+ 总刷卡金额:
+ {{ item.totalAmount }} 元
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/statistic/index.vue b/src/pages/statistic/index.vue
index 1691826..9d9a90f 100644
--- a/src/pages/statistic/index.vue
+++ b/src/pages/statistic/index.vue
@@ -54,7 +54,9 @@
{ path: '/pages/statistic/accounts/investDealAnalysis/index', text: '投资收益统计', icon: 'arrow-down', permission: 'invest:investDealAnalysis:list' },
{ path: '/pages/statistic/bill/onlineLendAnalysis/index', text: '贷款待还统计', icon: 'cloud-upload', permission: 'invest:onlineLendAnalysis:list' },
{ path: '/pages/statistic/bill/creditInstallmentAnalysis/index', text: '信用卡分期待还', icon: 'map-filled', permission: 'invest:creditInstallment:list' },
- { path: '/pages/statistic/bill/creditRecordAnalysis/index', text: '征信查询统计', icon: 'search', permission: 'invest:creditRecordAnalysis:list' }
+ { path: '/pages/statistic/bill/creditRecordAnalysis/index', text: '征信查询统计', icon: 'search', permission: 'invest:creditRecordAnalysis:list' },
+ { 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' },
])
const billGridList=ref([
// { path: '/pages/page1/page1', text: '账户总览', icon: 'person-filled', permission: 'invest:accountAnalysis:list' },
@@ -76,6 +78,8 @@
{ path: '/pages/statistic/accounts/investDealAnalysis/index', text: '投资收益统计', icon: 'arrow-down', permission: 'invest:investDealAnalysis:list' },
{ path: '/pages/statistic/accounts/accountDealAnalysis/index', text: '账户收支统计', icon: 'person', permission: 'invest:accountDealAnalysis:list' },
{ path: '/pages/statistic/accounts/dailyExpensesAnalysis/index', text: '日常支出统计', icon: 'wallet' , permission: 'invest:dailyExpensesAnalysis:list' },
+ { 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' },
])
function navigateTo(path) {