parent
836eb7cab1
commit
4d39139f8b
@ -0,0 +1,61 @@
|
|||||||
|
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'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 事件洞察列表
|
||||||
|
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'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 热点事件top车型分布
|
||||||
|
export function getHotEventSseries(params) {
|
||||||
|
let obj = Object.assign({action: 'getHotEventSseries', sType: 'HotEvent0528'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 热点事件渠道分布
|
||||||
|
export function getEventsSourceTypeByEventsType0528(params) {
|
||||||
|
let obj = Object.assign({action: 'getEventsSourceTypeByEventsType0528', sType: 'HotEvent0528'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 品牌数据-数据传播总量
|
||||||
|
export function getBrandOverviewCount0528(params) {
|
||||||
|
let obj = Object.assign({action: 'getBrandOverviewCount0528', sType: 'BrandOverview'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
Loading…
Reference in new issue