From f58822729438143191bbf5eaa5c81ae10ea2611e Mon Sep 17 00:00:00 2001 From: liuyongli <1598631486@qq.com> Date: Mon, 8 Nov 2021 16:09:31 +0800 Subject: [PATCH] =?UTF-8?q?lyl=E5=B0=BE=E7=BF=BC=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/TailInsightdetails/index.js | 86 +++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 src/api/TailInsightdetails/index.js diff --git a/src/api/TailInsightdetails/index.js b/src/api/TailInsightdetails/index.js new file mode 100644 index 0000000..7890572 --- /dev/null +++ b/src/api/TailInsightdetails/index.js @@ -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' + } + }) +} \ No newline at end of file