This commit is contained in:
liushuai
2019-12-02 17:15:01 +08:00
parent f8b5751a21
commit f6ef7676e2
5 changed files with 37 additions and 21 deletions

View File

@@ -67,14 +67,14 @@ export function searchTable1(PurchaseOrder, check4) {
}
})
}
export function addData(num1, num2, id, time) {
export function addData(num1, num2, id, time, remarks) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '车间管理_基本件采购_请购单_增加数据',
param: '请购车间=' + num1 + '&请购人=' + num2 + '&人员编号=' + id + '&请购时间=' + time
param: '请购车间=' + num1 + '&请购人=' + num2 + '&人员编号=' + id + '&请购时间=' + time + '&备注=' + remarks
}
})
}