From afdbc008cb80fbd11cb9a9d8ca8fdb7b6ad3502b Mon Sep 17 00:00:00 2001 From: j1ack <1209452658@qq.com> Date: Fri, 11 Aug 2023 17:09:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 12 + src/api/form.js | 12 +- src/assets/icons/svg/Frame-1.svg | 3 + src/assets/icons/svg/Frame-2.svg | 10 + src/assets/icons/svg/Frame-3.svg | 3 + src/assets/icons/svg/Frame-4.svg | 3 + src/assets/icons/svg/Frame-5.svg | 3 + src/assets/icons/svg/Frame-6.svg | 3 + src/assets/icons/svg/Frame-7.svg | 3 + src/assets/icons/svg/Frame.svg | 3 + src/assets/images/Ellipse291.png | Bin 0 -> 3809 bytes src/router/index.js | 35 +- src/views/dashboard/PanelGroup.vue | 6 +- src/views/dashboard/PieChartCreate.vue | 586 ++++++++++++++++-- src/views/dashboard/radialindicator.vue | 218 +++++++ src/views/index_v1.vue | 27 +- src/views/login.vue | 8 +- src/views/monitor/job/index.vue | 50 +- src/views/monitor/logininfor/index.vue | 34 +- src/views/monitor/online/index.vue | 14 +- src/views/monitor/operlog/index.vue | 34 +- src/views/otc/otcAppealConfig/index.vue | 47 +- src/views/otc/otcAppealOrder/appealDetail.vue | 507 +++++++++++++++ src/views/otc/otcAppealOrder/index.vue | 429 ++++++------- src/views/otc/otcCoin/index.vue | 207 +++---- src/views/otc/otcCurrencyCoin/index.vue | 36 +- src/views/otc/otcFinance/index.vue | 156 ++--- src/views/otc/otcOrder/index.vue | 44 +- src/views/otc/otcPaymentType/index.vue | 34 +- src/views/otc/otcStoreDaiFuOrder/index.vue | 209 ++++--- src/views/otc/otcStoreOrder/index.vue | 40 +- src/views/otc/otcStoreRechargeOrder/index.vue | 40 +- src/views/otc/otcSysDict/index.vue | 42 +- src/views/system/config/index.vue | 44 +- src/views/system/dept/index.vue | 28 +- src/views/system/dict/index.vue | 44 +- src/views/system/menu/index.vue | 26 +- src/views/system/notice/index.vue | 33 +- src/views/system/post/index.vue | 39 +- src/views/system/role/index.vue | 30 +- src/views/system/user/index.vue | 51 +- src/views/user/UserCertification/index.vue | 72 ++- .../user/UserCertification/userDetail.vue | 467 ++++++++++++++ src/views/user/ad/index.vue | 46 +- src/views/user/coin/index.vue | 39 +- src/views/user/mail/index.vue | 48 +- src/views/user/position/index.vue | 43 +- src/views/user/type/index.vue | 42 +- src/views/user/userCustomer/index.vue | 32 +- src/views/user/wallet/index.vue | 42 +- src/views/user/walletAssetsRecord/index.vue | 48 +- 51 files changed, 2833 insertions(+), 1199 deletions(-) create mode 100644 src/assets/icons/svg/Frame-1.svg create mode 100644 src/assets/icons/svg/Frame-2.svg create mode 100644 src/assets/icons/svg/Frame-3.svg create mode 100644 src/assets/icons/svg/Frame-4.svg create mode 100644 src/assets/icons/svg/Frame-5.svg create mode 100644 src/assets/icons/svg/Frame-6.svg create mode 100644 src/assets/icons/svg/Frame-7.svg create mode 100644 src/assets/icons/svg/Frame.svg create mode 100644 src/assets/images/Ellipse291.png create mode 100644 src/views/dashboard/radialindicator.vue create mode 100644 src/views/otc/otcAppealOrder/appealDetail.vue create mode 100644 src/views/user/UserCertification/userDetail.vue diff --git a/src/App.vue b/src/App.vue index 2c4bd27..528ffa9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -27,6 +27,15 @@ export default { } \ No newline at end of file diff --git a/src/views/index_v1.vue b/src/views/index_v1.vue index 3501ecc..4b4b05e 100644 --- a/src/views/index_v1.vue +++ b/src/views/index_v1.vue @@ -5,28 +5,21 @@ OTC当日数据统计
- 时间 - 时间 + 搜索
- - - - +
Payment当日数据统计
- - - - - + @@ -37,7 +30,7 @@ import RaddarChart from './dashboard/RaddarChart' import PieChart from './dashboard/PieChart' import PieChartCreate from './dashboard/PieChartCreate' import BarChart from './dashboard/BarChart' -import { payGetMerchantTotalInfo } from "@/api/form"; +import { payGetMerchantTotalInfo,orderStatistics } from "@/api/form"; const lineChartData = { newVisitis: { @@ -74,6 +67,7 @@ export default { dateRange: [], queryParams: {}, info: {}, + statisticsData:{}, } }, created() { @@ -100,12 +94,16 @@ export default { getData() { payGetMerchantTotalInfo.getMerchantTotalInfo(this.addSESDateRange(this.queryParams, this.dateRange)).then(response => { this.info = response.data - this.info.beginTime=this.dateRange[0] - this.info.endTime=this.dateRange[1] + }); + payGetMerchantTotalInfo.orderStatistics(this.addSESDateRange(this.queryParams, this.dateRange)).then(response => { + this.statisticsData = response.data + this.statisticsData.beginTime=this.dateRange[0] + this.statisticsData.endTime=this.dateRange[1] }); }, /** 搜索按钮操作 */ handleQuery() { + this.getData() }, handleSetLineChartData(type) { this.lineChartData = lineChartData[type] @@ -119,6 +117,7 @@ export default { font-size: 16px; color: #333; font-weight: 500; + margin: initial !important; } .dashboard-editor-container { diff --git a/src/views/login.vue b/src/views/login.vue index f2a4f3a..9528261 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -128,7 +128,7 @@ export default { } }; - - + + + \ No newline at end of file diff --git a/src/views/otc/otcAppealOrder/index.vue b/src/views/otc/otcAppealOrder/index.vue index 66b81ef..e6db0c4 100644 --- a/src/views/otc/otcAppealOrder/index.vue +++ b/src/views/otc/otcAppealOrder/index.vue @@ -2,208 +2,175 @@
- + - - - - - - - - + + + + + + + + - - - + + + - - 搜索 - 重置 - - -
+ + 搜索 + 重置 + + +
-
+
- - - 新增 - - - 修改 - - - - - - - - - - - - - - 导出 - - - + + + + + + + + + + + + + + + 导出 + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -215,13 +182,9 @@ - - + + @@ -233,10 +196,11 @@ - - + + + 申诉成功 @@ -256,7 +220,7 @@ + + + + + \ No newline at end of file diff --git a/src/views/user/ad/index.vue b/src/views/user/ad/index.vue index 9746877..aed2f27 100644 --- a/src/views/user/ad/index.vue +++ b/src/views/user/ad/index.vue @@ -1,8 +1,9 @@