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.
41 lines
845 B
JavaScript
41 lines
845 B
JavaScript
3 years ago
|
import axios from "@/utils/request";
|
||
|
|
||
|
export function getInvProducts(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/thrsys/getInvProducts",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function delInvProducts(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/thrsys/delInvProducts",
|
||
|
method: "post",
|
||
|
data: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function delAll(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/thrsys/invProducts/delAll",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function downloadAll(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/thrsys/invProducts/downloadAll",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
export function inpisDlAll(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/thrsys/invProducts/inpisDlAll",
|
||
|
method: "post",
|
||
|
data: query
|
||
|
});
|
||
|
}
|