设备看板
parent
11ed117c0b
commit
dd0bbf0737
@ -0,0 +1,57 @@
|
||||
import request from '@/utils/request'
|
||||
// 获取工厂下拉列表
|
||||
export function getBoardFactory(data) {
|
||||
return request({
|
||||
url: '/mes/wcsInterface/getBoardFactory',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
// 右上角表格
|
||||
export function selectEquRepairWorkOrderDetai(data) {
|
||||
return request({
|
||||
url: '/device/deviceInterface/selectEquRepairWorkOrderDetail',
|
||||
method: 'get',
|
||||
params: data,
|
||||
});
|
||||
}
|
||||
// 左下角表格
|
||||
export function selectSpotInspectionList(data) {
|
||||
return request({
|
||||
url: '/device/deviceInterface/selectSpotInspectionList',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
}
|
||||
// 右下角表格
|
||||
export function selectInspectionList(data) {
|
||||
return request({
|
||||
url: '/device/deviceInterface/selectInspectionList',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
}
|
||||
// 左上角
|
||||
export function getCompletedRate(data) {
|
||||
return request({
|
||||
url: '/device/deviceInterface/getCompletedRate',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
}
|
||||
//看板刷新时间
|
||||
export function getDeviceRefreshTime(data) {
|
||||
return request({
|
||||
url: '/device/deviceInterface/getDeviceRefreshTime',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
}
|
||||
//字典表修改
|
||||
export function getdictlist(data) {
|
||||
return request({
|
||||
url: '/system/dict/data/list',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue