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.
42 lines
860 B
JavaScript
42 lines
860 B
JavaScript
2 years ago
|
import axios from "../../utils/request";
|
||
|
|
||
|
export function getInvRemindSetList(params) {
|
||
|
return axios({
|
||
|
url: "/udiwms/inv/remind/set/filter",
|
||
|
method: "get",
|
||
|
params: params
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function saveInvRemindSet(data, formName) {
|
||
|
return axios({
|
||
|
url: formName === "add"? "/udiwms/inv/remind/set/add" : "/udiwms/inv/remind/set/update",
|
||
|
method: "post",
|
||
|
data: data
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function deleteInvRemindSet(data){
|
||
|
return axios({
|
||
|
url: "/udiwms/inv/remind/set/delete",
|
||
|
method: "post",
|
||
|
data: data
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function getInfoByInvId(params) {
|
||
|
return axios({
|
||
|
url: "/udiwms/inv/remind/set/getInfoByInvId",
|
||
|
method: "get",
|
||
|
params: params
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function batchAddInvRemindSet(data) {
|
||
|
return axios({
|
||
|
url: "/udiwms/inv/remind/set/batchAddInvRemindSet",
|
||
|
method: "post",
|
||
|
data: data
|
||
|
});
|
||
|
}
|