只改了仓库货位管理编辑框人员

This commit is contained in:
Vergil
2020-02-06 12:01:50 +08:00
parent be1132346e
commit f72cb16fa0

View File

@@ -421,14 +421,18 @@ export default {
// 编辑
handleEdit(index, row, formName) {
this.temp = 2
this.dialogFormVisible = true
this.form.WarehouseNumber = row.仓库编号
this.form.WarehouseName = row.仓库名称
this.form.WarehouseDescription = row.仓库描述
this.form.Address = row.地址
this.form.ContactpeopleValue = row.人员编号
if (this.role !== '15') {
this.form.ContactpeopleValue = this.Contactpeople[0].value
} else {
this.form.ContactpeopleValue = parseInt(row.人员编号)
}
this.form.Note = row.备注
this.HouseNumber = row.仓库流水号
this.dialogFormVisible = true
},
// 执行修改
chaEdit() {