pengwei
2025-03-12 18fcb8ad28f583e3e1b99b23e4f7d9e1833dcd83
1
2
3
4
5
6
7
8
9
10
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}`)