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.
38 lines
1.2 KiB
38 lines
1.2 KiB
10 months ago
|
import http from '../http'
|
||
1 year ago
|
|
||
|
// 根据设备号查询信息
|
||
|
export function getDeviceDetailsByNumber(params) {
|
||
10 months ago
|
return http.get('/eam/device/equipment-accounts/detail',{params})
|
||
1 year ago
|
}
|
||
|
// 根据厂区查询设备
|
||
|
export function getDeviceByFactoryAreaNumber(factoryAreaNumber) {
|
||
10 months ago
|
return http.get('/eam/device/equipment-accounts/noPage')
|
||
1 year ago
|
}
|
||
|
// 添加报修
|
||
|
export function deviceRepairCreate(data) {
|
||
10 months ago
|
return http.post('/eam/equipment-report-repair-request/create',data)
|
||
1 year ago
|
}
|
||
|
// 报修列表
|
||
|
export function deviceRepairPage(params) {
|
||
10 months ago
|
return http.get('/eam/equipment-report-repair-request/page',{params})
|
||
1 year ago
|
}
|
||
|
// 撤销
|
||
|
export function rejected(id) {
|
||
|
return http.delete('/eam/device-repair-request/rejected?id='+id)
|
||
|
}
|
||
|
// 设备列表
|
||
10 months ago
|
export function deviceNoPage(params) {
|
||
|
return http.get('/eam/device/equipment-accounts/noPage',{params})
|
||
1 year ago
|
}
|
||
|
// 设备分页列表
|
||
|
export function devicePage(params) {
|
||
10 months ago
|
return http.get('/eam/device/equipment-accounts/page',{params})
|
||
1 year ago
|
}
|
||
|
// 根据设备号码获取二级列表
|
||
|
export function getSubList(params) {
|
||
|
return http.get('/eam/device-mold-items/getListByNumber',{params})
|
||
|
}
|
||
|
// 新增申领备件时获取备件列表
|
||
|
export function getApplyDeviceList() {
|
||
10 months ago
|
return http.get('/eam/device/equipment-accounts/noPage')
|
||
1 year ago
|
}
|