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.
taicangZongzhi/src/api/consensusList/index.js

18 lines
357 B

import request from '@/utils/request.js'
//网络舆情列表
export function yuqingListA(data) {
return request({
url: '/zongzhi/sentiment/list',
method: 'get',
params:data
})
}
//网络舆情详情
export function getWlyq(id) {
return request({
url: `/zongzhi/sentiment/${id}`,
method: 'get',
})
}