pengwei
2025-03-07 7cc3ed0f7aca03e39fa65d617f2a51ff531a12f6
1
2
3
4
5
6
7
8
9
10
11
12
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)