diff --git a/src/api/EventInsight/index.js b/src/api/EventInsight/index.js new file mode 100644 index 0000000..41a52c8 --- /dev/null +++ b/src/api/EventInsight/index.js @@ -0,0 +1,19 @@ +/* + * @Author: your name + * @Date: 2021-10-27 17:08:02 + * @LastEditTime: 2021-10-27 17:09:09 + * @LastEditors: Please set LastEditors + * @Description: In User Settings Edit + * @FilePath: /data-show/src/api/EventInsight/index.js + */ +import httpService from "@/request" + +// 热点事件渠道分布 +export function getPropagationDirection0528(params) { + let obj = Object.assign({action: 'getPropagationDirection0528', sType: 'HotEvent0528'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'get', + params: obj + }) +} diff --git a/src/api/comm/index.js b/src/api/comm/index.js index 03dc346..d564c75 100644 --- a/src/api/comm/index.js +++ b/src/api/comm/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-20 16:36:08 - * @LastEditTime: 2021-10-27 15:41:11 + * @LastEditTime: 2021-10-27 19:28:14 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/api/comm/index.js @@ -75,4 +75,14 @@ export function getToExcelField(params) { params: obj }) } - +// 导出Excel的方法 +export function getExcel(params) { + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: params, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} diff --git a/src/components/v-echars/index.vue b/src/components/v-echars/index.vue index 7db2290..9a3dc2f 100644 --- a/src/components/v-echars/index.vue +++ b/src/components/v-echars/index.vue @@ -1,7 +1,7 @@