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.
46 lines
982 B
46 lines
982 B
2 years ago
|
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/sentimenfiltering',
|
||
|
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',
|
||
|
})
|
||
|
}
|