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