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}`)
|
|