Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
f707541d
提交
f707541d
authored
7月 16, 2021
作者:
无木
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(tree): fixed `checkedKeys` with `search` mode
修复搜索状态的切换导致的勾选值可能不正确的问题
上级
b06a7ab7
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
38 行增加
和
22 行删除
+38
-22
Tree.vue
src/components/Tree/src/Tree.vue
+15
-22
useTree.ts
src/components/Tree/src/useTree.ts
+23
-0
没有找到文件。
src/components/Tree/src/Tree.vue
浏览文件 @
f707541d
...
...
@@ -18,8 +18,8 @@
import
TreeHeader
from
'./TreeHeader.vue'
;
import
{
ScrollContainer
}
from
'/@/components/Container'
;
import
{
omit
,
get
,
cloneDeep
,
concat
,
uniq
}
from
'lodash-es'
;
import
{
isBoolean
,
isFunction
}
from
'/@/utils/is'
;
import
{
omit
,
get
,
difference
}
from
'lodash-es'
;
import
{
is
Array
,
is
Boolean
,
isFunction
}
from
'/@/utils/is'
;
import
{
extendSlots
,
getSlot
}
from
'/@/utils/helper/tsxHelper'
;
import
{
filter
}
from
'/@/utils/helper/treeHelper'
;
...
...
@@ -56,25 +56,6 @@
searchData
:
[]
as
TreeItem
[],
});
const
copyState
=
{
checkedKeys
:
[],
};
watch
(
()
=>
searchState
.
startSearch
,
(
newVal
,
oldVal
)
=>
{
if
(
newVal
&&
!
oldVal
)
{
// before search, save current checkedKeys
copyState
.
checkedKeys
=
cloneDeep
(
state
.
checkedKeys
);
}
else
if
(
!
newVal
&&
oldVal
)
{
// after search, restore checkedKeys
state
.
checkedKeys
=
uniq
(
concat
(
state
.
checkedKeys
,
copyState
.
checkedKeys
));
copyState
.
checkedKeys
=
[];
}
},
{
immediate
:
true
}
);
const
treeDataRef
=
ref
<
TreeItem
[]
>
([]);
const
[
createContextMenu
]
=
useContextMenu
();
...
...
@@ -109,8 +90,19 @@
emit
(
'update:selectedKeys'
,
v
);
},
onCheck
:
(
v
:
CheckKeys
,
e
:
CheckEvent
)
=>
{
let
currentValue
=
toRaw
(
state
.
checkedKeys
)
as
Keys
;
if
(
isArray
(
currentValue
)
&&
searchState
.
startSearch
)
{
const
{
key
}
=
unref
(
getReplaceFields
);
currentValue
=
difference
(
currentValue
,
getChildrenKeys
(
e
.
node
.
$attrs
.
node
[
key
]));
if
(
e
.
checked
)
{
currentValue
.
push
(
e
.
node
.
$attrs
.
node
[
key
]);
}
state
.
checkedKeys
=
currentValue
;
}
else
{
state
.
checkedKeys
=
v
;
const
rawVal
=
toRaw
(
v
);
}
const
rawVal
=
toRaw
(
state
.
checkedKeys
);
emit
(
'update:value'
,
rawVal
);
emit
(
'check'
,
rawVal
,
e
);
},
...
...
@@ -134,6 +126,7 @@
filterByLevel
,
updateNodeByKey
,
getAllKeys
,
getChildrenKeys
,
}
=
useTree
(
treeDataRef
,
getReplaceFields
);
function
getIcon
(
params
:
Recordable
,
icon
?:
string
)
{
...
...
src/components/Tree/src/useTree.ts
浏览文件 @
f707541d
...
...
@@ -27,6 +27,28 @@ export function useTree(
return
keys
as
Keys
;
}
function
getChildrenKeys
(
nodeKey
:
string
|
number
,
list
?:
TreeDataItem
[]):
Keys
{
const
keys
:
Keys
=
[];
const
treeData
=
list
||
unref
(
treeDataRef
);
const
{
key
:
keyField
,
children
:
childrenField
}
=
unref
(
getReplaceFields
);
if
(
!
childrenField
||
!
keyField
)
return
keys
;
for
(
let
index
=
0
;
index
<
treeData
.
length
;
index
++
)
{
const
node
=
treeData
[
index
];
const
children
=
node
[
childrenField
];
if
(
nodeKey
===
node
[
keyField
])
{
keys
.
push
(
node
[
keyField
]
!
);
if
(
children
&&
children
.
length
)
{
keys
.
push
(...(
getAllKeys
(
children
)
as
string
[]));
}
}
else
{
if
(
children
&&
children
.
length
)
{
keys
.
push
(...
getChildrenKeys
(
nodeKey
,
children
));
}
}
}
return
keys
as
Keys
;
}
// Update node
function
updateNodeByKey
(
key
:
string
,
node
:
TreeDataItem
,
list
?:
TreeDataItem
[])
{
if
(
!
key
)
return
;
...
...
@@ -146,5 +168,6 @@ export function useTree(
filterByLevel
,
updateNodeByKey
,
getAllKeys
,
getChildrenKeys
,
};
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论