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.
34 lines
668 B
JavaScript
34 lines
668 B
JavaScript
import axios from "../../utils/request";
|
|
|
|
export function getCountCodesList(params) {
|
|
return axios({
|
|
url: "/inv/count/codes/filter",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
|
|
export function deleteCode(data) {
|
|
return axios({
|
|
url: "/inv/count/codes/deleteCode",
|
|
method: "post",
|
|
data: data
|
|
});
|
|
}
|
|
|
|
export function addCode(data) {
|
|
return axios({
|
|
url: "/inv/count/codes/addCode",
|
|
method: "post",
|
|
data: data
|
|
});
|
|
}
|
|
|
|
export function getCodesNum(params) {
|
|
return axios({
|
|
url: "/inv/count/codes/getCountOrderCodesNum",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|