1
2
3
4
5
6
7
8
9
10
| import http from "./http";
|
| //分页获取物料
| export const GetPageDataApi = (data) => http.post('api/Dt_ReceiveInfo/GetPageData', data)
|
| //单据详情查询
| export const GetReceiveDetailApi = (key,code) => http.post(`api/Dt_ReceiveInfo/GetReceiveDetail?key=${key}&code=${code}`)
|
| //确认收货
| export const GetReceiveApi = (data) => http.post('api/Dt_ReceiveInfo/GetReceive', data)
|
|