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

Merge pull request !375 from moon69/N/A
This commit is contained in:
芋道源码
2024-02-17 12:41:36 +00:00
committed by Gitee

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 = {