import http from "../http"; //数据 export const ShowMaintence = (data) => http.post(`/api/Maintenance/ShowMaintence`, data); // 获取已经被允许的数据 export const PersonnelMonitoring = (data) => http.post(`/api/Maintenance/PersonnelMonitoring`, data); //允许数据 export const RunOperation = (id, ispossible) => http.post(`/api/Maintenance/RunOperation?id=${id}&ispossible=${ispossible}`); //改变状态 export const ChangeTasState = (data) => http.post("/api/Maintenance/ChangeTasState", data); //获取开始检修人员 export const YShowStartTake = () => http.post(`/api/Maintenance/YShowStartTake`);