pengwei
2025-03-07 7cc3ed0f7aca03e39fa65d617f2a51ff531a12f6
1
2
3
4
5
6
7
8
import http from "./http";
 
// 获取验收信息列表
export const GetPageDataApi = (data) => http.post('api/Dt_AcceptanceInfo/GetPageData', data)
//完成验收
export const FinishApi = (data) => http.post(`api/Dt_AcceptanceInfo/Complete`,data)
//获取操作信息
export const GetOperationInfosApi = (code, type) => http.post(`api/Dt_OperationInfo/GetOperationInfo?receiveCode=${code}&type=${type}`)