diff --git a/src/api/statistic.js b/src/api/statistic.js index 1b42b0f..4021d79 100644 --- a/src/api/statistic.js +++ b/src/api/statistic.js @@ -49,6 +49,17 @@ export function tradeDataApi() { }); } +/** + * 渠道统计数据 + * @param pram + */ +export function channelDataApi() { + return request({ + url: `/admin/statistics/channel/data`, + method: 'GET', + }); +} + /** * 交易概览 * @param pram @@ -85,6 +96,20 @@ export function tradeTrendApi(params) { }); } + +/** + * 渠道趋势 + * @param pram + */ +export function channelTrendApi(params) { + return request({ + url: `/admin/statistics/channel/trend`, + method: 'GET', + params, + }); +} + + /** * 用户总数据 * @param pram diff --git a/src/views/statistic/channel/components/channel.vue b/src/views/statistic/channel/components/channel.vue index a0f32f1..d72b878 100644 --- a/src/views/statistic/channel/components/channel.vue +++ b/src/views/statistic/channel/components/channel.vue @@ -78,7 +78,7 @@