You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
import request from '@/utils/request.js'
|
|
|
|
|
|
//舆情分类
|
|
export function yuqingTypes(data) {
|
|
return request({
|
|
url: '/zongzhi/opinionscreen/sentimenclassification',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
//舆情信息量统计
|
|
export function yuqingMsgStats() {
|
|
return request({
|
|
url: '/zongzhi/opinionscreen/sentimencount',
|
|
method: 'get',
|
|
})
|
|
}
|
|
//动态筛选大屏幕接口(弃用)
|
|
export function sift() {
|
|
return request({
|
|
url: '/zongzhi/opinionscreen/sentimentfilter',
|
|
method: 'get',
|
|
})
|
|
}
|
|
// 舆情走势图
|
|
export function yuqingChart() {
|
|
return request({
|
|
url: '/zongzhi/opinionscreen/sentimentype',
|
|
method: 'get',
|
|
})
|
|
}
|
|
//词云
|
|
export function wordCloud() {
|
|
return request({
|
|
url: '/zongzhi/opinionscreen/wordcloud',
|
|
method: 'get',
|
|
})
|
|
}
|
|
//舆情报告
|
|
export function yqbg() {
|
|
return request({
|
|
url: '/zongzhi/opinionscreen/sentimentreport',
|
|
method: 'get',
|
|
})
|
|
}
|
|
//动态筛选列表
|
|
export function dtsxListGet(){
|
|
return request({
|
|
url: '/zongzhi/sx/list',
|
|
method: 'get',
|
|
})
|
|
} |