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.
26 lines
495 B
JavaScript
26 lines
495 B
JavaScript
3 years ago
|
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
|
||
|
});
|
||
|
}
|