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.
22 lines
686 B
22 lines
686 B
import http from '../http'
|
|
// 获取tabs备件列表
|
|
export function getSparePartsPage(params) {
|
|
return http.get('/eam/item-accounts/page',{params})
|
|
}
|
|
// 获取备件列表
|
|
export function getSparePartsList(params) {
|
|
return http.get('/eam/item/getListByNumber',{params})
|
|
}
|
|
// 新增申领备件时获取备件列表
|
|
export function getApplySparePartsList() {
|
|
return http.get('/eam/basic/spare-part/noPage')
|
|
}
|
|
// 新增申领备件时获取备件列表
|
|
export function getItemAccountsNoPage() {
|
|
return http.get('/eam/item-accounts/noPage')
|
|
}
|
|
|
|
// 新增备件维修获取备件列表
|
|
export function getServiceSparePartsList() {
|
|
return http.get('/eam/basic/spare-part/noPage')
|
|
}
|