You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
629 B
JavaScript
33 lines
629 B
JavaScript
import axios from "@/utils/request";
|
|
|
|
export function getSupCertRemindMsgList(params) {
|
|
return axios({
|
|
url: "/sup/cert/remind/msg/filter",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
|
|
export function confirmMsg(params) {
|
|
return axios({
|
|
url: "/sup/cert/remind/msg/confirmMsg",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
|
|
export function ignoreMsg(params) {
|
|
return axios({
|
|
url: "/sup/cert/remind/msg/ignoreMsg",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
export function getSupCertgetCount(params) {
|
|
return axios({
|
|
url: "/sup/cert/remind/msg/getCount",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|