Files
2024-04-07 19:05:18 +08:00

28 lines
501 B
JavaScript

import request from '@/utils/request'
/**
* 短批次号
* @param {查询条件} data
*/
export function GetGoodsNowProduction_List(query) {
return request({
url: '/mes/wm/WmGoodsNowProduction/shortPatchsearch',
method: 'get',
params: query,
})
}
/**
* 查询详细信息
* @param {查询条件} data
*/
export function GetGoodsNowProduction_detail(query) {
return request({
url: '/mes/wm/WmGoodsNowProduction/patchsearchdetail',
method: 'get',
params: query,
})
}