艺术家
2025-05-22 52756e8a22ff5d3c5e9cf90dfa5b87742c60350d
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);