修改了标准入库流程--选择人员信息页面

This commit is contained in:
zhaokaiyao@91isoft.com
2021-08-04 14:46:58 +08:00
parent 01263e3fec
commit 64f8962b64
@@ -1528,10 +1528,16 @@
this.zrUserIds = nameList
},
checkedRole (data) {
if (this.userType === 'jlUserId') {
this.roleForm.jlUserId = data.id
this.roleForm.jlUserName = data.name
}
if (this.userType === 'jlUserId') {
this.roleForm.jlUserId = data[0].id
this.roleForm.jlUserName = data[0].name
}else if(this.userType === 'zrUserId'){
this.roleForm.zrUserId=data[0].id;
this.roleForm.zrUserName=data[0].name;
}
},
// z责任人会签姓名搜索
filterNode(value, data) {
@@ -1834,6 +1840,7 @@
},
getTree () {
this.$http.get('SarInstitution/institution/institutionAndUser', {}, {}, res=> {
this.treeData = res.data
})
},