自制件状态查询

This commit is contained in:
Vergil
2020-05-09 10:00:57 +08:00
parent 443d0e3ab6
commit 08193b7e1e
4 changed files with 537 additions and 242 deletions

View File

@@ -2,16 +2,6 @@ import request from '@/utils/request'
import state from '@/store'
import router from '@/router'
// export function initProject() {
// return request({
// url: '',
// method: 'post',
// data: {
// type: '1',
// name: 'PDM_项目名称_查询数据_按时间排序'
// }
// })
// }
export function intPartState() {
return request({
url: '',
@@ -62,3 +52,29 @@ export function searchTable(check1, machine, check2, groupNum, check3, partNumbe
}
})
}
export function gettabledata1(num) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '车间生产管理工艺_追溯加工过程_查询工序',
param: '工艺计划流水号=' + num + '=int'
}
})
}
export function getPersons(num) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '车间生产管理工艺_自制件状态查询_每阶段操作者查询',
param: '工艺计划流水号=' + num
}
})
}