Commit 4ff5dbf8 authored by youjie's avatar youjie

no message

parent eebde6a9
......@@ -472,6 +472,7 @@
:placeholder="$t('tips.srgjzjxguolv')" v-model="filterText1">
</el-input>
</p>
{{defaultProps1[0]}}
<el-tree class='ApprovalProcessBg' :data="roleList" ref="treeRole" show-checkbox
:filter-node-method="filterNode1" :props="defaultProps1" :check-on-click-node="true" :check-strictly="true"
@check-change="checkedRole" :default-checked-keys="defaultCheckedArr" node-key="PostId">
......@@ -794,7 +795,7 @@
// this.addMsg.PropertyType="";
this.getPropertyType();
}
if (this.TemplateId != 0) {
this.getList();
} else {
......@@ -1175,7 +1176,7 @@
})
},
addAuditUser() {
addAuditUser() {
// 抄送人
this.dialogTitle = this.$t('fnc.xzrenyuan');
this.outerVisible2 = true;
......@@ -1760,9 +1761,10 @@
},
filterNode(value, data) {
if (!value) return true;
return data.DepartmentName.indexOf(value) !== -1;
return data.EmployeeName.indexOf(value) != -1;
},
filterNode1(value, data) {
if (!value) return true;
return data.PostName.indexOf(value) !== -1;
},
......
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