Commit 62037442 by moon69 Committed by Gitee

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

Signed-off-by: moon69 <1016830869@qq.com>
parent a0ce1f3a
......@@ -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 = {
......
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 sign in to comment