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
558 B
JavaScript
26 lines
558 B
JavaScript
import axios from '@/utils/request'
|
|
|
|
export function getSettingList(params) {
|
|
return axios({
|
|
url: "/invCount/setting/filterList",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
|
|
export function saveCountSetting(data, formName) {
|
|
return axios({
|
|
url: formName === 'add' ? "/invCount/setting/add" : "/invCount/setting/update",
|
|
method: "post",
|
|
data: data
|
|
});
|
|
}
|
|
|
|
export function verifyAdd() {
|
|
return axios({
|
|
url: "/invCount/setting/verifyAdd",
|
|
method: "get",
|
|
params: null
|
|
});
|
|
}
|