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.
45 lines
759 B
JavaScript
45 lines
759 B
JavaScript
import axios from '@/utils/request'
|
|
|
|
export function getEntrustRece(query) {
|
|
return axios({
|
|
url: "/spms/entrust/rece/filter",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
|
|
export function deleteEntrustRece(query) {
|
|
return axios({
|
|
url: "/spms/entrust/rece/delete",
|
|
method: "post",
|
|
data: query
|
|
});
|
|
}
|
|
|
|
export function updateEntrustRece(query) {
|
|
return axios({
|
|
url: "/spms/entrust/rece/update",
|
|
method: "post",
|
|
data: query
|
|
});
|
|
}
|
|
|
|
export function insertEntrustRece(query) {
|
|
return axios({
|
|
url: "/spms/entrust/rece/add",
|
|
method: "post",
|
|
data: query
|
|
});
|
|
}
|
|
|
|
|
|
export function filterNoUseBusType(query) {
|
|
return axios({
|
|
url: "/spms/entrust/rece/filterAllNoUse",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
|
|
|