Commit 92d71afe authored by zhengke's avatar zhengke

修改

parent 92ad7a3a
...@@ -1400,16 +1400,16 @@ ...@@ -1400,16 +1400,16 @@
this.directors = obj.RoleOrInitiator this.directors = obj.RoleOrInitiator
} }
if (obj.AuditType == 2) { if (obj.AuditType == 2) {
this.showMember = []; // this.showMember = [];
this.memberSetCheckedKeys = []; this.memberSetCheckedKeys = [];
this.AuditWay = obj.AuditWay; this.AuditWay = obj.AuditWay;
var arr=[]; var arr=[];
obj.AuditUserList.forEach((item, index) => { obj.AuditUserList.forEach((item, index) => {
this.showMember.push({ this.showMember.push({
EmployeeName: item.EmName, EmployeeName: item.EmName,
Id: item.Id Id: item.EmployeeId
}) })
arr.push(item.Id); arr.push(item.EmployeeId);
if(this.$refs.tree){ if(this.$refs.tree){
this.$refs.tree.setCheckedKeys(arr); this.$refs.tree.setCheckedKeys(arr);
} }
...@@ -1419,7 +1419,7 @@ ...@@ -1419,7 +1419,7 @@
this.AuditWay = obj.AuditWay; this.AuditWay = obj.AuditWay;
this.showRole = []; this.showRole = [];
this.showRole.push({ this.showRole.push({
DepartmentName: obj.AduitName, DepartmentName: obj.RoleOrInitiatorName,
Id: obj.RoleOrInitiator Id: obj.RoleOrInitiator
}) })
this.defaultCheckedArr.push(obj.RoleOrInitiator) this.defaultCheckedArr.push(obj.RoleOrInitiator)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment