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

19 lines
355 B

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