You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1004 B
36 lines
1004 B
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-27 17:08:02
|
|
* @LastEditTime: 2021-11-02 17:32:02
|
|
* @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: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
|
|
// 行业TOP热点事件
|
|
export function getHotEventsList(params) {
|
|
let obj = Object.assign({action: 'getHotEventsList', sType: 'HotEvent'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|