wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<template>
    <div class="cl-menu-check">
        <el-input v-model="keyword" :placeholder="$t('输入关键字进行过滤')" />
 
        <div class="cl-menu-check__scroller">
            <el-scrollbar max-height="200px">
                <el-tree
                    ref="Tree"
                    node-key="id"
                    show-checkbox
                    :data="list"
                    :props="{
                        label: 'name',
                        children: 'children'
                    }"
                    :filter-node-method="filterNode"
                    @check="onCheckChange"
                />
            </el-scrollbar>
        </div>
    </div>
</template>
 
<script lang="ts" setup>
defineOptions({
    name: 'cl-menu-check'
});
 
import { ref, watch } from 'vue';
import { deepTree } from '/@/cool/utils';
import { useCool } from '/@/cool';
import { useUpsert } from '@cool-vue/crud';
import { useI18n } from 'vue-i18n';
 
const { t } = useI18n();
 
const props = defineProps({
    modelValue: {
        type: Array,
        default: () => []
    }
});
 
const emit = defineEmits(['update:modelValue']);
 
const { service } = useCool();
 
// el-tree 组件
const Tree = ref();
 
// 树形列表
const list = ref();
 
// 搜索关键字
const keyword = ref('');
 
// 刷新列表
async function refresh() {
    return service.base.sys.menu.list().then(res => {
        list.value = deepTree(res);
    });
}
 
// 过滤节点
function filterNode(val: string, data: any) {
    if (!val) return true;
    return data.name.includes(val);
}
 
// 值改变
function onCheckChange(_: any, { checkedKeys, halfCheckedKeys }: any) {
    emit('update:modelValue', [...checkedKeys, ...halfCheckedKeys]);
}
 
// 过滤监听
watch(keyword, (val: string) => {
    Tree.value.filter(val);
});
 
useUpsert({
    async onOpened() {
        await refresh();
        Tree.value?.setCheckedKeys(
            (props.modelValue || []).filter(e => Tree.value.getNode(e)?.isLeaf)
        );
    }
});
</script>
 
<style lang="scss" scoped>
.cl-menu-check {
    &__scroller {
        border: 1px solid var(--el-border-color);
        border-radius: 4px;
        margin-top: 10px;
        padding: 5px 0;
    }
}
</style>