From daf48fd67b58360e737eff395ec18abab6bf455e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A3=B7=E5=8F=B6?= <14103883+leaf-phos@user.noreply.gitee.com> Date: Mon, 2 Dec 2024 17:31:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/app/dashboard.js | 12 +++++ .../components/MchRechargeCountReport.vue | 49 ++++++++----------- .../components/UserDailyRechargeReport.vue | 2 +- src/views/system/smUser/detail.vue | 6 ++- 4 files changed, 39 insertions(+), 30 deletions(-) create mode 100644 src/api/app/dashboard.js diff --git a/src/api/app/dashboard.js b/src/api/app/dashboard.js new file mode 100644 index 0000000..59a0b7f --- /dev/null +++ b/src/api/app/dashboard.js @@ -0,0 +1,12 @@ +import request from '@/utils/request' + +/** + * 获取分成金额统计 + */ +export function appGetBonusDailyAmount(params) { + return request({ + url: '/app/dashboard/bonusDailyAmount', + method: 'get', + params + }) +} diff --git a/src/views/mch/index/components/MchRechargeCountReport.vue b/src/views/mch/index/components/MchRechargeCountReport.vue index 4cb9a5d..2e37b62 100644 --- a/src/views/mch/index/components/MchRechargeCountReport.vue +++ b/src/views/mch/index/components/MchRechargeCountReport.vue @@ -1,15 +1,20 @@