parent
4d39139f8b
commit
94f3f68c12
@ -0,0 +1,38 @@
|
||||
import httpService from "@/request"
|
||||
|
||||
// 论坛洞察详情-论坛洞察详情
|
||||
export function getBbsInsightAnalysis(params) {
|
||||
let obj = Object.assign({action: 'getBbsInsightAnalysis', sType: 'BbsBrand'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 传播态势-传播态势
|
||||
export function getBbsCountTime(params) {
|
||||
let obj = Object.assign({action: 'getBbsCountTime', sType: 'BbsBrand'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// TOP10车型传播态势-TOP10车型传播态势
|
||||
export function getBbsBrandTime(params) {
|
||||
let obj = Object.assign({action: 'getBbsBrandTime', sType: 'BbsBrand'}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
Loading…
Reference in new issue