上传机床总图

This commit is contained in:
caoxinyu
2019-06-02 14:30:48 +08:00
parent d400408c87
commit 5643b466d3
9 changed files with 197 additions and 5 deletions

View File

@@ -400,3 +400,36 @@ export function getMachineNames(num) {
}
})
}
export function machineSelect(projectValue) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: 'PDM_机床名称_查询数据2',
param: `项目流水号=${projectValue}`
}
})
}
export function getFileData(MachineDrawValue) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: 'PDM_机床总图_查询数据',
param: `机床流水号=${MachineDrawValue}`
}
})
}
export function deleteFileData(id) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: 'PDM_机床总图_删除数据',
param: `文件标识=${id}`
}
})
}