Commit 4ff5dbf8 authored by youjie's avatar youjie

no message

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