This commit is contained in:
liushuai
2020-05-06 08:44:51 +08:00
parent 1df919eab0
commit b7bb7d031e
15 changed files with 357 additions and 220 deletions

View File

@@ -140,7 +140,7 @@ export function selectIntoList(...params) {
ModularID: router.currentRoute.path,
type: '2',
name: '车间装配管理_领料单明细_增加数据',
param: `基本件流水号组=${params[0]}&标准件和外购件流水号组=${params[1]}&领料单流水号=${params[2]}`
param: `基本件流水号组=${params[0]}&标准件和外购件流水号组=${params[1]}&领料单流水号=${params[2]}&领用数量组=${params[3]}`
}
})
}
@@ -186,3 +186,17 @@ export function searchListDetailMX(...params) {
}
})
}
// 查询三表明细领料详情
export function searchTableDetailMX(...params) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '1',
name: '车间装配管理_三表_领料详情_查询数据',
param: `基本件流水号=${params[0]}&标准件和外购件流水号=${params[1]}`
}
})
}