工器具退料

This commit is contained in:
hayu 2025-05-29 19:46:17 +08:00
parent a4bbeef334
commit 2b4480c100
1 changed files with 12 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import { http } from '@/utils/http' import { http } from '@/utils/http'
import { getBackList } from '../back'
/** /**
* 领料出库 ---- 列表查询 * 领料出库 ---- 列表查询
@ -92,3 +93,14 @@ export const leaseOutBackApi = (data) => {
data, data,
}) })
} }
/**
* 工器具退料 ---- 列表查询
*/
export const getBackListAPI = (data) => {
return http({
method: 'GET',
url: '/material/back_apply_info/list',
data,
})
}