From 5c10fa3e8a720f573c52b8e6cb602d6f345b5bfb Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Fri, 28 Jun 2024 13:07:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=9F=E8=AE=A1=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E6=96=B0=E5=8A=9F=E8=83=BD=E5=A2=9E=E5=8A=A0=EF=BC=8C=E5=8E=9F?= =?UTF-8?q?=E6=9C=89=E5=8A=9F=E8=83=BD=E4=BC=98=E5=8C=96=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 147 ++++ .../accounts/accountAnalysis/index.vue | 650 ++++++++++++++++++ .../accounts/accountDealAnalysis/index.vue | 495 +++++++++++++ .../accounts/accountsBalance/index.vue | 388 +++++++++++ .../accounts/creditCardDealAnalysis/index.vue | 552 +++++++++++++++ .../accounts/debitDealAnalysis/index.vue | 546 +++++++++++++++ .../accounts/investDealAnalysis/index.vue | 510 ++++++++++++++ .../statistic/accounts/posAnalysis/index.vue | 497 +++++++++++++ .../bill/creditBillAnalysis/index.vue | 523 ++++++++++++++ .../bill/creditInstallmentAnalysis/index.vue | 514 ++++++++++++++ .../index.vue | 499 ++++++++++++++ .../bill/creditRecordAnalysis/index.vue | 495 +++++++++++++ .../statistic/bill/futuresAnalysis/index.vue | 500 ++++++++++++++ .../statistic/bill/investAnalysis/index.vue | 499 ++++++++++++++ .../bill/onlineLendAnalysis/index.vue | 515 ++++++++++++++ .../bill/onlineLendSettledAnalysis/index.vue | 500 ++++++++++++++ .../statistic/bill/stocksAnalysis/index.vue | 500 ++++++++++++++ src/pages/statistic/index.vue | 60 +- .../accounts/accountDealRecord/addEdit.vue | 2 +- .../work/accounts/accountDealRecord/list.vue | 26 +- .../accounts/creditTransferRecord/list.vue | 25 +- .../accounts/debitTransferRecord/list.vue | 25 +- .../work/accounts/investAccountDeal/list.vue | 25 +- .../accounts/investTransferRecord/list.vue | 27 +- .../work/accounts/lendTransferRecord/list.vue | 26 +- .../work/accounts/posTransferRecord/list.vue | 26 +- src/pages/work/base/creditCard/addEdit.vue | 6 +- src/pages/work/base/futures/addEdit.vue | 228 ++++++ src/pages/work/base/futures/details.vue | 91 +++ src/pages/work/base/futures/list.vue | 340 +++++++++ src/pages/work/base/posmachine/addEdit.vue | 308 +++++++++ src/pages/work/base/posmachine/details.vue | 105 +++ src/pages/work/base/posmachine/list.vue | 351 ++++++++++ src/pages/work/base/stocks/addEdit.vue | 212 ++++++ src/pages/work/base/stocks/details.vue | 89 +++ src/pages/work/base/stocks/list.vue | 331 +++++++++ .../work/bill/creditCardBill/addEdit.vue | 2 +- .../bill/creditInstallmentHistory/addEdit.vue | 7 +- .../detailsAddEdit.vue | 8 +- src/pages/work/bill/futuresBill/addEdit.vue | 2 +- .../work/bill/onlineLendHistory/addEdit.vue | 7 +- .../bill/onlineLendHistory/detailsAddEdit.vue | 6 +- .../work/bill/peopleLendHistory/addEdit.vue | 2 +- src/pages/work/bill/stocksBill/addEdit.vue | 2 +- src/pages/work/index.vue | 8 +- src/static/images/average.png | Bin 0 -> 1463 bytes src/static/images/completionTickets.png | Bin 0 -> 9115 bytes src/static/images/completionTime.png | Bin 0 -> 7104 bytes src/static/images/four.png | Bin 0 -> 4694 bytes src/static/images/one.png | Bin 0 -> 5237 bytes src/static/images/positiveRating.png | Bin 0 -> 4513 bytes src/static/images/three.png | Bin 0 -> 7173 bytes src/static/images/ticketSum.png | Bin 0 -> 4051 bytes src/static/images/two.png | Bin 0 -> 6454 bytes 54 files changed, 10591 insertions(+), 86 deletions(-) create mode 100644 src/pages/statistic/accounts/accountAnalysis/index.vue create mode 100644 src/pages/statistic/accounts/accountDealAnalysis/index.vue create mode 100644 src/pages/statistic/accounts/accountsBalance/index.vue create mode 100644 src/pages/statistic/accounts/creditCardDealAnalysis/index.vue create mode 100644 src/pages/statistic/accounts/debitDealAnalysis/index.vue create mode 100644 src/pages/statistic/accounts/investDealAnalysis/index.vue create mode 100644 src/pages/statistic/accounts/posAnalysis/index.vue create mode 100644 src/pages/statistic/bill/creditBillAnalysis/index.vue create mode 100644 src/pages/statistic/bill/creditInstallmentAnalysis/index.vue create mode 100644 src/pages/statistic/bill/creditInstallmentSettledAnalysis/index.vue create mode 100644 src/pages/statistic/bill/creditRecordAnalysis/index.vue create mode 100644 src/pages/statistic/bill/futuresAnalysis/index.vue create mode 100644 src/pages/statistic/bill/investAnalysis/index.vue create mode 100644 src/pages/statistic/bill/onlineLendAnalysis/index.vue create mode 100644 src/pages/statistic/bill/onlineLendSettledAnalysis/index.vue create mode 100644 src/pages/statistic/bill/stocksAnalysis/index.vue create mode 100644 src/pages/work/base/futures/addEdit.vue create mode 100644 src/pages/work/base/futures/details.vue create mode 100644 src/pages/work/base/futures/list.vue create mode 100644 src/pages/work/base/posmachine/addEdit.vue create mode 100644 src/pages/work/base/posmachine/details.vue create mode 100644 src/pages/work/base/posmachine/list.vue create mode 100644 src/pages/work/base/stocks/addEdit.vue create mode 100644 src/pages/work/base/stocks/details.vue create mode 100644 src/pages/work/base/stocks/list.vue create mode 100644 src/static/images/average.png create mode 100644 src/static/images/completionTickets.png create mode 100644 src/static/images/completionTime.png create mode 100644 src/static/images/four.png create mode 100644 src/static/images/one.png create mode 100644 src/static/images/positiveRating.png create mode 100644 src/static/images/three.png create mode 100644 src/static/images/ticketSum.png create mode 100644 src/static/images/two.png diff --git a/src/pages.json b/src/pages.json index 282b3e9..a413b1f 100644 --- a/src/pages.json +++ b/src/pages.json @@ -55,6 +55,95 @@ } } , + { + "path": "pages/statistic/accounts/accountsBalance/index", + "style": { + "navigationBarTitleText": "记账账户统计" + } + },{ + "path": "pages/statistic/bill/creditRecordAnalysis/index", + "style": { + "navigationBarTitleText": "征信查询统计" + } + }, + { + "path": "pages/statistic/accounts/posAnalysis/index", + "style": { + "navigationBarTitleText": "POS机刷卡统计" + } + }, + { + "path": "pages/statistic/accounts/debitDealAnalysis/index", + "style": { + "navigationBarTitleText": "储蓄卡收支统计" + } + }, + { + "path": "pages/statistic/accounts/creditCardDealAnalysis/index", + "style": { + "navigationBarTitleText": "信用卡收支统计" + } + }, + { + "path": "pages/statistic/bill/onlineLendAnalysis/index", + "style": { + "navigationBarTitleText": "网贷待还统计" + } + },{ + "path": "pages/statistic/bill/onlineLendSettledAnalysis/index", + "style": { + "navigationBarTitleText": "网贷已还统计" + } + }, + { + "path": "pages/statistic/bill/futuresAnalysis/index", + "style": { + "navigationBarTitleText": "期货统计分析" + } + }, + { + "path": "pages/statistic/bill/stocksAnalysis/index", + "style": { + "navigationBarTitleText": "股票统计分析" + } + }, + { + "path": "pages/statistic/bill/investAnalysis/index", + "style": { + "navigationBarTitleText": "收益统计分析" + } + }, + { + "path": "pages/statistic/bill/creditInstallmentSettledAnalysis/index", + "style": { + "navigationBarTitleText": "信用卡分期已还" + } + },{ + "path": "pages/statistic/bill/creditBillAnalysis/index", + "style": { + "navigationBarTitleText": "信用卡账单统计" + } + }, + { + "path": "pages/statistic/bill/creditInstallmentAnalysis/index", + "style": { + "navigationBarTitleText": "信用卡分期待还统计" + } + }, + { + "path": "pages/statistic/accounts/investDealAnalysis/index", + "style": { + "navigationBarTitleText": "投资收益统计" + } + } + , + { + "path": "pages/statistic/accounts/accountDealAnalysis/index", + "style": { + "navigationBarTitleText": "账户收支统计" + } + } + , { "path": "pages/work/accounts/accountDealRecord/list", "style": { @@ -263,6 +352,64 @@ "style": { "navigationBarTitleText": "信用卡管理" } + }, + { + "path": "pages/work/base/posmachine/list", + "style": { + "navigationBarTitleText": "POS机管理" + } + } , + { + "path": "pages/work/base/posmachine/details", + "style": { + "navigationBarTitleText": "POS机管理详情" + } + } + , + { + "path": "pages/work/base/posmachine/addEdit", + "style": { + "navigationBarTitleText": "POS机管理" + } + } + , + { + "path": "pages/work/base/futures/list", + "style": { + "navigationBarTitleText": "期货账户管理" + } + } , + { + "path": "pages/work/base/futures/details", + "style": { + "navigationBarTitleText": "期货账户管理详情" + } + } + , + { + "path": "pages/work/base/futures/addEdit", + "style": { + "navigationBarTitleText": "期货账户管理" + } + } , + { + "path": "pages/work/base/stocks/list", + "style": { + "navigationBarTitleText": "股票账户管理" + } + } , + { + "path": "pages/work/base/stocks/details", + "style": { + "navigationBarTitleText": "股票账户管理详情" + } + } + , + { + "path": "pages/work/base/stocks/addEdit", + "style": { + "navigationBarTitleText": "股票账户管理" + } } , { diff --git a/src/pages/statistic/accounts/accountAnalysis/index.vue b/src/pages/statistic/accounts/accountAnalysis/index.vue new file mode 100644 index 0000000..aeda8f9 --- /dev/null +++ b/src/pages/statistic/accounts/accountAnalysis/index.vue @@ -0,0 +1,650 @@ + + + + \ No newline at end of file diff --git a/src/pages/statistic/accounts/accountDealAnalysis/index.vue b/src/pages/statistic/accounts/accountDealAnalysis/index.vue new file mode 100644 index 0000000..e54b83a --- /dev/null +++ b/src/pages/statistic/accounts/accountDealAnalysis/index.vue @@ -0,0 +1,495 @@ + + + + + \ No newline at end of file diff --git a/src/pages/statistic/accounts/accountsBalance/index.vue b/src/pages/statistic/accounts/accountsBalance/index.vue new file mode 100644 index 0000000..2f7688f --- /dev/null +++ b/src/pages/statistic/accounts/accountsBalance/index.vue @@ -0,0 +1,388 @@ + + + + + \ No newline at end of file diff --git a/src/pages/statistic/accounts/creditCardDealAnalysis/index.vue b/src/pages/statistic/accounts/creditCardDealAnalysis/index.vue new file mode 100644 index 0000000..6b54038 --- /dev/null +++ b/src/pages/statistic/accounts/creditCardDealAnalysis/index.vue @@ -0,0 +1,552 @@ + + + + + \ No newline at end of file diff --git a/src/pages/statistic/accounts/debitDealAnalysis/index.vue b/src/pages/statistic/accounts/debitDealAnalysis/index.vue new file mode 100644 index 0000000..b6fb6c0 --- /dev/null +++ b/src/pages/statistic/accounts/debitDealAnalysis/index.vue @@ -0,0 +1,546 @@ + + + + + \ No newline at end of file diff --git a/src/pages/statistic/accounts/investDealAnalysis/index.vue b/src/pages/statistic/accounts/investDealAnalysis/index.vue new file mode 100644 index 0000000..29076cd --- /dev/null +++ b/src/pages/statistic/accounts/investDealAnalysis/index.vue @@ -0,0 +1,510 @@ + + + + + \ No newline at end of file diff --git a/src/pages/statistic/accounts/posAnalysis/index.vue b/src/pages/statistic/accounts/posAnalysis/index.vue new file mode 100644 index 0000000..cf56658 --- /dev/null +++ b/src/pages/statistic/accounts/posAnalysis/index.vue @@ -0,0 +1,497 @@ + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/creditBillAnalysis/index.vue b/src/pages/statistic/bill/creditBillAnalysis/index.vue new file mode 100644 index 0000000..05859f0 --- /dev/null +++ b/src/pages/statistic/bill/creditBillAnalysis/index.vue @@ -0,0 +1,523 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/creditInstallmentAnalysis/index.vue b/src/pages/statistic/bill/creditInstallmentAnalysis/index.vue new file mode 100644 index 0000000..0a767ea --- /dev/null +++ b/src/pages/statistic/bill/creditInstallmentAnalysis/index.vue @@ -0,0 +1,514 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/creditInstallmentSettledAnalysis/index.vue b/src/pages/statistic/bill/creditInstallmentSettledAnalysis/index.vue new file mode 100644 index 0000000..13885e6 --- /dev/null +++ b/src/pages/statistic/bill/creditInstallmentSettledAnalysis/index.vue @@ -0,0 +1,499 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/creditRecordAnalysis/index.vue b/src/pages/statistic/bill/creditRecordAnalysis/index.vue new file mode 100644 index 0000000..215f30a --- /dev/null +++ b/src/pages/statistic/bill/creditRecordAnalysis/index.vue @@ -0,0 +1,495 @@ + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/futuresAnalysis/index.vue b/src/pages/statistic/bill/futuresAnalysis/index.vue new file mode 100644 index 0000000..8907459 --- /dev/null +++ b/src/pages/statistic/bill/futuresAnalysis/index.vue @@ -0,0 +1,500 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/investAnalysis/index.vue b/src/pages/statistic/bill/investAnalysis/index.vue new file mode 100644 index 0000000..911f0bb --- /dev/null +++ b/src/pages/statistic/bill/investAnalysis/index.vue @@ -0,0 +1,499 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/onlineLendAnalysis/index.vue b/src/pages/statistic/bill/onlineLendAnalysis/index.vue new file mode 100644 index 0000000..31d3162 --- /dev/null +++ b/src/pages/statistic/bill/onlineLendAnalysis/index.vue @@ -0,0 +1,515 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/onlineLendSettledAnalysis/index.vue b/src/pages/statistic/bill/onlineLendSettledAnalysis/index.vue new file mode 100644 index 0000000..586781e --- /dev/null +++ b/src/pages/statistic/bill/onlineLendSettledAnalysis/index.vue @@ -0,0 +1,500 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/bill/stocksAnalysis/index.vue b/src/pages/statistic/bill/stocksAnalysis/index.vue new file mode 100644 index 0000000..1ab33a4 --- /dev/null +++ b/src/pages/statistic/bill/stocksAnalysis/index.vue @@ -0,0 +1,500 @@ + + + + + + \ No newline at end of file diff --git a/src/pages/statistic/index.vue b/src/pages/statistic/index.vue index e23dd9e..f8b881e 100644 --- a/src/pages/statistic/index.vue +++ b/src/pages/statistic/index.vue @@ -1,6 +1,19 @@