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.
18 lines
436 B
JavaScript
18 lines
436 B
JavaScript
import axios from "@/utils/request";
|
|
|
|
export function findInspectSet(params) {
|
|
return axios({
|
|
url: "/udiwms/inv/device/inspect/set/findInspectSet",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|
|
|
|
export function saveDeviceInspect(data, type) {
|
|
return axios({
|
|
url: type == "add" ?"/udiwms/inv/device/inspect/set/addDeviceInspect" : "/udiwms/inv/device/inspect/set/updateInspectSet",
|
|
method: "post",
|
|
data: data
|
|
});
|
|
}
|