修复权限范围默认展开,deptExpand 却默认折叠的问题

Signed-off-by: moon69 <1016830869@qq.com>
This commit is contained in:
moon69 2024-01-26 15:40:24 +00:00 committed by Gitee
parent a0ce1f3a5b
commit 6203744272
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -86,7 +86,7 @@ const formData = reactive({
})
const formRef = ref() // Ref
const deptOptions = ref<any[]>([]) //
const deptExpand = ref(false) // /
const deptExpand = ref(true) // /
const treeRef = ref() // Ref
const treeNodeAll = ref(false) // /
const checkStrictly = ref(true) //
@ -135,7 +135,7 @@ const submitForm = async () => {
const resetForm = () => {
//
treeNodeAll.value = false
deptExpand.value = false
deptExpand.value = true
checkStrictly.value = true
//
formData.value = {