import http from "./http"; //分页获取物料 export const GetPageDataApi = (data) => http.post('api/Dt_DebugInfo/GetPageData', data) //完成调试 export const FinishApi = (key) => http.post(`api/Dt_DebugInfo/Complete?key=${key}`) //调试操作 export const GetDebugApi = (data) => http.post('api/Dt_DebugInfo/DebugOperation', data) //获取操作信息 export const GetOperationInfosApi = (code,type) => http.post(`api/Dt_OperationInfo/GetOperationInfo?receiveCode=${code}&type=${type}`)