装箱单修改

This commit is contained in:
hedekun
2018-11-27 13:57:32 +08:00
parent 08683fbe0c
commit cc3424a2f2
7 changed files with 143 additions and 95 deletions

View File

@@ -174,7 +174,7 @@ export function initPerson() {
data: {
type: '1',
name: '人事档案管理_人员_部门与人员_查询数据_根据部门编号',
param: '考核部门编号=10=int'
param: '考核部门编号=17=int'
}
})
}

View File

@@ -148,7 +148,7 @@ export function deleteFileData(num) {
data: {
type: '2',
name: 'PDM_装箱单_随机技术文件_删除数据',
param: `号=${num}`
param: `文件编号=${num}`
}
})
}
@@ -160,7 +160,7 @@ export function editFileData(name, number, remark, num) {
data: {
type: '2',
name: 'PDM_装箱单_随机技术文件_修改数据',
param: `名称=${name}&数量=${number}&备注=${remark}&号=${num}`
param: `名称=${name}&数量=${number}&备注=${remark}&文件编号=${num}`
}
})
}
@@ -196,24 +196,24 @@ export function deleteSpareData(num) {
data: {
type: '2',
name: 'PDM_装箱单_备件_删除数据',
param: `号=${num}`
param: `备件编号=${num}`
}
})
}
export function editSpareData(name, specification, number, unit, remark, num) {
export function editSpareData(name, specification, unit, number, remark, num) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: 'PDM_装箱单_备件_修改数据',
param: `名称=${name}&规格=${specification}&数量=${number}&单位=${unit}&备注=${remark}&号=${num}`
param: `名称=${name}&规格=${specification}&数量=${number}&单位=${unit}&备注=${remark}&备件编号=${num}`
}
})
}
export function addSpareData(name, specification, number, unit, remark, num) {
export function addSpareData(name, specification, unit, number, remark, num) {
return request({
url: '',
method: 'post',