This commit is contained in:
andy 2026-06-02 17:07:12 +08:00
parent 07a806dcfe
commit 4a372c2440

View File

@ -81,6 +81,17 @@ export const orderItemApi = {
preCreation(data: any) {
return request({ url: '/biz/orderItem/preCreation', method: 'post', data })
},
//查询项目名称
xmoptions(params: any) {
return request({ url: '/biz/orderProject/options', method: 'get', params })
},
//根据项目查询物料
wloptions(params: any) { //projectId
return request({ url: '/biz/orderItem/options', method: 'get', params })
},
// 导出
export(params?: { ids?: string[]; code?: string; projectId?: number; beginTime?: string; endTime?: string }) {
const p: Record<string, any> = {}