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.
26 lines
485 B
JavaScript
26 lines
485 B
JavaScript
import axios from "../../utils/request";
|
|
|
|
export function getInvRemindMsgList(params) {
|
|
return axios({
|
|
url: "/udiwms/inv/remind/msg/filter",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
|
|
export function confirmMsg(params) {
|
|
return axios({
|
|
url: "/udiwms/inv/remind/msg/confirmMsg",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
|
|
export function ignoreMsg(params) {
|
|
return axios({
|
|
url: "/udiwms/inv/remind/msg/ignoreMsg",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|