更新
This commit is contained in:
35
src/api/ManufacturingCenter/EquipmentMonitoring.js
Normal file
35
src/api/ManufacturingCenter/EquipmentMonitoring.js
Normal file
@@ -0,0 +1,35 @@
|
||||
import request from '@/utils/request'
|
||||
// 查询加工工时统计表
|
||||
export function getwork_state() {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: 'MES_机加工MES_设备数据采集_工作状态_查询'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 查询工位状态
|
||||
export function getOP_state() {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: 'MES_机加工MES_设备数据采集_工位状态_查询'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 查询零件图号
|
||||
export function searchtooltip(num) {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: 'MES_机加工MES_工位零件图号查询',
|
||||
param: '工位号=' + num
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user