fix: 新加了组织后,编辑已有用户时,无法选择看见新加的组织

This commit is contained in:
fit2cloud-chenyw 2021-05-18 18:16:04 +08:00
parent 97c879f94d
commit 3970913f43

View File

@ -28,11 +28,13 @@
</el-form-item>
<el-form-item :label="$t('commons.organization')" prop="dept">
<treeselect
ref="deptTreeSelect"
v-model="form.deptId"
:options="depts"
:load-options="loadDepts"
:auto-load-root-options="false"
:placeholder="$t('user.choose_org')"
@open="testOpen"
/>
</el-form-item>
<el-form-item :label="$t('commons.role')" prop="roleIds">
@ -257,6 +259,15 @@ export default {
},
backToList() {
this.$router.push({ name: '用户管理' })
},
testOpen(instanceId) {
const results = this.depts.map(node => {
if (node.hasChildren) {
node.children = null
}
return node
})
this.depts = results
}
}
}