supervise-place-manage.js
765 Bytes
import request from "@/utils/request";
// POST
// /operatorPlace/addOperatorPlace
// 新增监管场所
export function addOperatorPlace(data) {
return request({
url: "/bus-customer/operatorPlace/addOperatorPlace",
method: "post",
data: data,
});
}
// POST
// /operatorPlace/getOperatorPlaceList
// 查询监管场所列表
export function getOperatorPlaceList(data) {
return request({
url: "/bus-customer/operatorPlace/getOperatorPlaceList",
method: "post",
data: data,
});
}
// POST
// /operatorPlace/updateOperatorPlace
// 修改监管场所
export function updateOperatorPlace(data) {
return request({
url: "/bus-customer/operatorPlace/updateOperatorPlace",
method: "post",
data: data,
});
}