28 lines
501 B
JavaScript
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,
|
|
})
|
|
}
|
|
|