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.
17 lines
542 B
17 lines
542 B
1 year ago
|
import http from './http'
|
||
|
// 获取tabs备件列表
|
||
|
export function getSparePartsPage(params) {
|
||
|
return http.get('/eam/item/getAppPage',{params})
|
||
|
}
|
||
|
// 获取备件列表
|
||
|
export function getSparePartsList(params) {
|
||
|
return http.get('/eam/item/getListByNumber',{params})
|
||
|
}
|
||
|
// 新增申领备件时获取备件列表
|
||
|
export function getApplySparePartsList() {
|
||
|
return http.get('/eam/item/getApplyList')
|
||
|
}
|
||
|
// 新增备件维修获取备件列表
|
||
|
export function getServiceSparePartsList() {
|
||
|
return http.get('/eam/item/getItemMaintainList')
|
||
|
}
|