This commit is contained in:
zc
2026-04-12 23:18:33 +08:00
parent 9927382054
commit fce1099b38
5 changed files with 487 additions and 5 deletions

View File

@@ -45,3 +45,13 @@ export function deleteFullWorkOrder(id: string) {
export function exportFullWorkOrder(query: FullWorkOrderQuery) {
return http.download(`${BASE_URL}/export`, query)
}
/** @desc 保存原材料详情 */
export function saveFullWorkOrderDetail(data: any) {
return http.post(`${BASE_URL}/detail`, data)
}
/** @desc 获取原材料详情列表 */
export function getFullWorkOrderDetailList(id: string) {
return http.get(`${BASE_URL}/infos/${id}`)
}