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

26 lines
495 B
JavaScript

import axios from "../../utils/request";
export function getInvPreProduct(params) {
return axios({
url: "/spms/inv/pre/product/filter",
method: "get",
params: params
});
}
export function getInvPreProductDetail(params) {
return axios({
url: "/spms/inv/pre/product/filterDetail",
method: "get",
params: params
});
}
export function deleteInvPreProduct(data) {
return axios({
url: "/spms/inv/pre/product/delete",
method: "post",
data: data
});
}