5.8
pengwei
2025-05-08 b281791abab23d672922b7e9b7d1b51e348ed710
1
2
3
4
5
6
7
8
9
10
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);