Merge branch 'dev' of https://git.oa00.com/SWS/carInsightSystem into dev
commit
d9966f538b
@ -0,0 +1,66 @@
|
||||
import httpService from "@/request"
|
||||
|
||||
// 品牌对比-品牌调性比例
|
||||
export function getAffectionsC(params) {
|
||||
let obj = Object.assign({action: 'getAffectionsC', sType: 'BrandOverview', iContrastType: 1}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 品牌对比-信息量趋势
|
||||
export function getCountTime0528C(params) {
|
||||
let obj = Object.assign({action: 'getCountTime0528C', sType: 'BrandOverview', iContrastType: 1}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 品牌对比-整体信息量
|
||||
export function getContrastCount0528C(params) {
|
||||
let obj = Object.assign({action: 'getContrastCount0528C', sType: 'BrandOverview', iContrastType: 1}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 品牌对比-整体互动人数
|
||||
export function getInteractCount0528C(params) {
|
||||
let obj = Object.assign({action: 'getInteractCount0528C', sType: 'BrandOverview', iContrastType: 1}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 品牌对比-渠道分布
|
||||
export function getSourcetypeC(params) {
|
||||
let obj = Object.assign({action: 'getSourcetypeC', sType: 'BrandOverview', iContrastType: 1}, params)
|
||||
return httpService({
|
||||
url: `/api/v6.ashx`,
|
||||
method: 'post',
|
||||
data: obj,
|
||||
headers: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
Loading…
Reference in new issue