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.
udiwms-vue-frame/src/api/thrsys/thrInvProducts.js

41 lines
845 B
JavaScript

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
});
}