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.
|
|
|
import axios from "@/utils/request";
|
|
|
|
|
|
|
|
export function getDeviceInspectTakeList(params) {
|
|
|
|
return axios({
|
|
|
|
url: "/udiwms/inv/device/inspect/take/filter",
|
|
|
|
method: "get",
|
|
|
|
params: params
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function uploadDeviceInspecTake(params) {
|
|
|
|
return axios({
|
|
|
|
url: "/udiwms/inv/device/inspect/take/uploadDeviceInspecTake",
|
|
|
|
method: "post",
|
|
|
|
data: params
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function selectDeviceInspecTakeDetail(params) {
|
|
|
|
return axios({
|
|
|
|
url: "/udiwms/inv/device/inspect/take/detail/selectDeviceInspecTakeDetail",
|
|
|
|
method: "get",
|
|
|
|
params: params
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function uploadDeviceInspecTakeDetail(params) {
|
|
|
|
return axios({
|
|
|
|
url: "/udiwms/inv/device/inspect/take/detail/uploadDeviceInspecTakeDetail",
|
|
|
|
method: "post",
|
|
|
|
data: params
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function addDeviceInspecTakeDetail(params) {
|
|
|
|
return axios({
|
|
|
|
url: "/udiwms/inv/device/inspect/take/detail/addDeviceInspecTakeDetail",
|
|
|
|
method: "post",
|
|
|
|
data: params
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|