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.
122 lines
3.6 KiB
122 lines
3.6 KiB
import httpService from "@/request"
|
|
|
|
//事件点击 - 洞察详情
|
|
export function getCountAndaffections(params) {
|
|
let obj = Object.assign({action: 'getCountAndaffections', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 传播趋势
|
|
export function getTimeCount(params) {
|
|
let obj = Object.assign({action: 'getTimeCount', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 消息数据
|
|
export function getList(params) {
|
|
let obj = Object.assign({action: 'getList', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 热门词云
|
|
export function getHotWord(params) {
|
|
let obj = Object.assign({action: 'getHotWord', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 内容类型
|
|
export function getWtypeWeiBo0528(params) {
|
|
let obj = Object.assign({action: 'getWtypeWeiBo0528', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 是否认证
|
|
export function getUserAttestationGroupBy(params) {
|
|
let obj = Object.assign({action: 'getUserAttestationGroupBy', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 用户区域
|
|
export function getUserRegionGroupBy(params) {
|
|
let obj = Object.assign({action: 'getUserRegionGroupBy', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 图文分布
|
|
export function getPicboolGroupBy(params) {
|
|
let obj = Object.assign({action: 'getPicboolGroupBy', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 精华分布
|
|
export function getIsjingGroupBy(params) {
|
|
let obj = Object.assign({action: 'getIsjingGroupBy', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
}
|
|
//事件点击 - 内容top声量
|
|
export function getDirectWeiBo0528(params) {
|
|
let obj = Object.assign({action: 'getDirectWeiBo0528', sType: 'SeriesOverview'}, params)
|
|
return httpService({
|
|
url: `/api/v6.ashx`,
|
|
method: 'post',
|
|
data: obj,
|
|
headers: {
|
|
'content-type': 'application/x-www-form-urlencoded'
|
|
}
|
|
})
|
|
} |