import http from "./http"; //分页查询发货 export const GetPageDataApi = (data) => http.post('api/Dt_DeliverInfo/GetPageData', data) //获取发货详情 export const GetDeliverDetailApi = (assembleCode) => http.post('/api/Dt_DeliverInfo/GetDeliverDetail?assembleCode=' +assembleCode ) //获取质检报告 export const GetQualityApi = (code) => http.post(`api/Dt_DeliverInfo/GetReport?assembleCode=${code}`) export const CommitDeliverApi = (data) => http.post('api/Dt_DeliverInfo/CommitDeliver', data)