parent
332ba5df1d
commit
dc3ed4442b
File diff suppressed because one or more lines are too long
@ -0,0 +1,211 @@
|
|||||||
|
/*
|
||||||
|
* @Author: your name
|
||||||
|
* @Date: 2021-11-10 09:50:36
|
||||||
|
* @LastEditTime: 2021-11-10 16:02:05
|
||||||
|
* @LastEditors: Please set LastEditors
|
||||||
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
|
* @FilePath: /data-show/src/api/ModelForumDetails/index.js
|
||||||
|
*/
|
||||||
|
import httpService from "@/request"
|
||||||
|
// 论坛洞察详情
|
||||||
|
export function getBbsCount(params) {
|
||||||
|
let obj = Object.assign({action: 'getBbsCount',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 主贴内容分析-论坛传播态势
|
||||||
|
export function getBbsVolumeTime(params) {
|
||||||
|
let obj = Object.assign({action: 'getBbsVolumeTime',sType: 'BbsSeries'}, 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: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 主贴内容分析-阅读量
|
||||||
|
export function getClicksDistribution(params) {
|
||||||
|
let obj = Object.assign({action: 'getClicksDistribution',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 主贴内容分析-回复量
|
||||||
|
export function getReplyDistribution(params) {
|
||||||
|
let obj = Object.assign({action: 'getReplyDistribution',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 主贴内容分析-精华率
|
||||||
|
export function getJingHuaDistribution(params) {
|
||||||
|
let obj = Object.assign({action: 'getJingHuaDistribution',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 主贴内容分析-图文
|
||||||
|
export function getImgDistribution(params) {
|
||||||
|
let obj = Object.assign({action: 'getImgDistribution',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 正面话题分布-正面话题分布
|
||||||
|
export function getPositiveTopic(params) {
|
||||||
|
let obj = Object.assign({action: 'getPositiveTopic',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 负面话题分布-负面话题分布
|
||||||
|
export function getNegativeTopic(params) {
|
||||||
|
let obj = Object.assign({action: 'getNegativeTopic',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 主贴/跟帖ID车型分析-主贴/跟帖ID
|
||||||
|
export function getGuanZhuSeriesname(params) {
|
||||||
|
let obj = Object.assign({action: 'getGuanZhuSeriesname',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 主贴/跟帖ID车型分析-主贴/跟帖认证ID
|
||||||
|
export function getAttestationBuycars(params) {
|
||||||
|
let obj = Object.assign({action: 'getAttestationBuycars',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 主贴/跟帖用户分析-性别
|
||||||
|
export function getAttestationSex(params) {
|
||||||
|
let obj = Object.assign({action: 'getAttestationSex',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 主贴/跟帖用户分析-认证
|
||||||
|
export function getUserAttestation(params) {
|
||||||
|
let obj = Object.assign({action: 'getUserAttestation',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 主贴/跟帖区域分布-区域分布
|
||||||
|
export function getRegion(params) {
|
||||||
|
let obj = Object.assign({action: 'getRegion',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 疑似车黑ID-疑似车黑ID
|
||||||
|
export function getCarblackUserName(params) {
|
||||||
|
let obj = Object.assign({action: 'getCarblackUserName',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 跟帖ID注册时间-跟帖ID注册时间
|
||||||
|
export function getUserRegTime(params) {
|
||||||
|
let obj = Object.assign({action: 'getUserRegTime',sType: 'BbsSeries'}, params)
|
||||||
|
return httpService({
|
||||||
|
url: `/api/v6.ashx`,
|
||||||
|
method: 'post',
|
||||||
|
data: obj,
|
||||||
|
headers: {
|
||||||
|
'content-type': 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in new issue