This commit is contained in:
liushuai
2019-01-26 16:22:41 +08:00
parent a01226b906
commit 266ce2f3b3
11 changed files with 978 additions and 20 deletions

View File

@@ -25,14 +25,14 @@ export function searchParts(pageCurrent, pageSize, check1, num, check2, name) {
})
}
// 编辑数据
export function update(id, time, number, time1, reason, remarks) {
export function update(id, time, number1, number, time1, reason, remarks) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '车间管理_基本件外购质检_编辑数据',
param: `ID=${id}&交检日期=${time}&废品数量=${number}&检查日期=${time1}&报废原因=${reason}&备注=${remarks}`
param: `ID=${id}&交检日期=${time}&检验数量=${number1}&废品数量=${number}&检查日期=${time1}&报废原因=${reason}&备注=${remarks}`
}
})
}