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.
19 lines
355 B
19 lines
355 B
import request from "@/utils/request.js";
|
|
|
|
//网络舆情列表
|
|
export function yuqingListA(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",
|
|
});
|
|
}
|