This commit is contained in:
liushuai
2020-02-24 10:09:36 +08:00
parent 74eab855dc
commit 556987ba33
12 changed files with 437 additions and 244 deletions

View File

@@ -67,7 +67,7 @@ export function searchTable1(num) {
}
})
}
export function searchTable2(check1, machineNameValue, pageCurrent1, pageSize1) {
export function searchTable2(check1, machineNameValue, check2, time1, time2, pageCurrent1, pageSize1) {
return request({
url: '',
method: 'post',
@@ -76,8 +76,21 @@ export function searchTable2(check1, machineNameValue, pageCurrent1, pageSize1)
ModularID: router.currentRoute.path,
type: '1',
name: '车间生产管理工艺_传递后_零件报废补投_查询数据_按机床查询',
param: '机床流水号_check=' + check1 + '&机床流水号=' + machineNameValue,
param: '机床流水号_check=' + check1 + '&机床流水号=' + machineNameValue + '&报废日期_check=' + check2 + '&开始时间=' + time1 + '&结束时间=' + time2,
pagination: pageCurrent1 + '&' + pageSize1
}
})
}
export function TableDta2Select(CutCode) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '车间生产管理工艺_零件工艺计划_报废零件记录_查询工序',
param: '补投流水号=' + CutCode
}
})
}