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