This commit is contained in:
liushuai
2019-06-27 15:29:10 +08:00
parent 337024bff0
commit a7465440f2
3 changed files with 269 additions and 3 deletions

View File

@@ -71,3 +71,36 @@ export function searchTableDetail(...params) {
}
})
}
export function searchData(pageSize, pageCurrent) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理工艺_加工顺序调整_查询正在加工零件工序_NEW',
Pagination: pageCurrent + '&' + pageSize
}
})
}
export function searchData1(pageSize, pageCurrent) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: 'MES_机加工MES_记录零件待加工显示_NEW',
Pagination: pageCurrent + '&' + pageSize
}
})
}
export function processingStatus(num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间生产管理_成组配套加工进度_查询数据',
param: '工艺计划流水号=' + num
}
})
}