parent
c8f9516af9
commit
f588227294
@ -0,0 +1,86 @@
|
||||
import httpService from "@/request"
|
||||
|
||||
// 尾翼洞察详情-尾翼洞察详情
|
||||
export function getWeiYiInsightAnalysis(params) {
|
||||
let obj = Object.assign({action: 'getWeiYiInsightAnalysis', sType: 'BrandWeiYi'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 传播态势-传播态势
|
||||
export function getWeiYiVolumeTime(params) {
|
||||
let obj = Object.assign({action: 'getWeiYiVolumeTime', sType: 'BrandWeiYi'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 媒体分布-媒体分布
|
||||
export function getSourcetype0528(params) {
|
||||
let obj = Object.assign({action: 'getSourcetype0528', sType: 'BrandWeiYi'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
//尾翼整体调性-尾翼整体调性
|
||||
export function getAffections(params) {
|
||||
let obj = Object.assign({action: 'getAffections', sType: 'BrandWeiYi'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 热门词云-正面词云
|
||||
export function getPositive(params) {
|
||||
let obj = Object.assign({action: 'getPositive', sType: 'BrandWeiYi'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 热门词云-负面词云
|
||||
export function getNegative(params) {
|
||||
let obj = Object.assign({action: 'getNegative', sType: 'BrandWeiYi'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 尾翼信息列表-尾翼信息列表
|
||||
export function getList0528(params) {
|
||||
let obj = Object.assign({action: 'getList0528', sType: 'BrandWeiYi'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
Loading…
Reference in new issue