You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
368 B
18 lines
368 B
import request from '@/utils/request'
|
|
|
|
// 获取备件信息
|
|
export function getSparePartsInfo(params) {
|
|
return request({
|
|
url: '/eam/item/inScanCodeByNumber',
|
|
'method': 'GET',
|
|
params
|
|
})
|
|
}
|
|
// 备件归还获取备件信息
|
|
export function getSparePartsReturnInfo(params) {
|
|
return request({
|
|
url: '/eam/item/scanCodeByNumber',
|
|
'method': 'GET',
|
|
params
|
|
})
|
|
}
|