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

34 lines
684 B
JavaScript

import axios from "../../utils/axios";
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
});
}