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/inventory/InvProducts.js

29 lines
551 B
JavaScript

import axios from "../../utils/axios";
export function filterProducts(query) {
return axios({
url: "/spms/inv/products/filter",
method: "get",
params: query
});
}
export function filterDetailProducts(query) {
return axios({
url: "/spms/inv/products/filterDetail",
method: "get",
params: query
});
}
export function deleteProducts(query) {
return axios(
{
url: "/spms/inv/products/delete",
method: "post",
data: query
}
)
}