parent
244dfb2162
commit
bf8eab8694
@ -1,18 +1,18 @@
|
|||||||
import request from '@/utils/request.js'
|
import request from "@/utils/request.js";
|
||||||
|
|
||||||
|
|
||||||
//网络舆情列表
|
//网络舆情列表
|
||||||
export function yuqingListA(data) {
|
export function yuqingListA(data) {
|
||||||
return request({
|
data.isStatus = 1;
|
||||||
url: '/zongzhi/sentiment/list',
|
return request({
|
||||||
method: 'get',
|
url: "/zongzhi/sentiment/list",
|
||||||
params:data
|
method: "get",
|
||||||
})
|
params: data,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
//网络舆情详情
|
//网络舆情详情
|
||||||
export function getWlyq(id) {
|
export function getWlyq(id) {
|
||||||
return request({
|
return request({
|
||||||
url: `/zongzhi/sentiment/${id}`,
|
url: `/zongzhi/sentiment/${id}`,
|
||||||
method: 'get',
|
method: "get",
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
@ -1,53 +1,53 @@
|
|||||||
import request from '@/utils/request.js'
|
import request from "@/utils/request.js";
|
||||||
|
|
||||||
|
|
||||||
//舆情分类
|
//舆情分类
|
||||||
export function yuqingTypes(data) {
|
export function yuqingTypes(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/zongzhi/opinionscreen/sentimenclassification',
|
url: "/zongzhi/opinionscreen/sentimenclassification",
|
||||||
method: 'post',
|
method: "post",
|
||||||
data
|
data,
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
//舆情信息量统计
|
//舆情信息量统计
|
||||||
export function yuqingMsgStats() {
|
export function yuqingMsgStats() {
|
||||||
return request({
|
return request({
|
||||||
url: '/zongzhi/opinionscreen/sentimencount',
|
url: "/zongzhi/opinionscreen/sentimencount",
|
||||||
method: 'get',
|
method: "get",
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
//动态筛选大屏幕接口(弃用)
|
//动态筛选大屏幕接口(弃用)
|
||||||
export function sift() {
|
export function sift() {
|
||||||
return request({
|
return request({
|
||||||
url: '/zongzhi/opinionscreen/sentimentfilter',
|
url: "/zongzhi/opinionscreen/sentimentfilter",
|
||||||
method: 'get',
|
method: "get",
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
// 舆情走势图
|
// 舆情走势图
|
||||||
export function yuqingChart() {
|
export function yuqingChart() {
|
||||||
return request({
|
return request({
|
||||||
url: '/zongzhi/opinionscreen/sentimentype',
|
url: "/zongzhi/opinionscreen/sentimentype",
|
||||||
method: 'get',
|
method: "get",
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
//词云
|
//词云
|
||||||
export function wordCloud() {
|
export function wordCloud() {
|
||||||
return request({
|
return request({
|
||||||
url: '/zongzhi/opinionscreen/wordcloud',
|
url: "/zongzhi/opinionscreen/wordcloud",
|
||||||
method: 'get',
|
method: "get",
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
//舆情报告
|
//舆情报告
|
||||||
export function yqbg() {
|
export function yqbg() {
|
||||||
return request({
|
return request({
|
||||||
url: '/zongzhi/opinionscreen/sentimentreport',
|
url: "/zongzhi/opinionscreen/sentimentreport",
|
||||||
method: 'get',
|
method: "get",
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
//动态筛选列表
|
//动态筛选列表
|
||||||
export function dtsxListGet(){
|
export function dtsxListGet(query) {
|
||||||
return request({
|
return request({
|
||||||
url: '/zongzhi/sx/list',
|
url: "/zongzhi/sx/list",
|
||||||
method: 'get',
|
method: "get",
|
||||||
})
|
params: query,
|
||||||
}
|
});
|
||||||
|
}
|
||||||
|
Loading…
Reference in new issue