fix: 修复角色菜单父子默认联动默认选中引起的展示问题,修改.gitignore配置文件
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -16,3 +16,4 @@ dist-ssr
|
||||
stats.html
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
.env.development
|
||||
@@ -57,7 +57,7 @@ const modelValue = defineModel("modelValue", {
|
||||
});
|
||||
const permKeywords = ref("");
|
||||
const isExpanded = ref(true);
|
||||
const parentChildLinked = ref(true);
|
||||
const parentChildLinked = ref(false);
|
||||
const permTreeRef = ref();
|
||||
// 展开/收缩 菜单菜单树
|
||||
function togglePermTree() {
|
||||
|
||||
@@ -249,7 +249,7 @@ const assignPermDialogVisible = ref(false);
|
||||
const permKeywords = ref("");
|
||||
const isExpanded = ref(true);
|
||||
|
||||
const parentChildLinked = ref(true);
|
||||
const parentChildLinked = ref(false);
|
||||
|
||||
// 查询
|
||||
function handleQuery() {
|
||||
|
||||
Reference in New Issue
Block a user