mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2026-03-24 22:42:26 +00:00
152 lines
2.7 KiB
Vue
152 lines
2.7 KiB
Vue
<template>
|
|
<div v-loading="loading" class="cl-role-perms">
|
|
<p v-if="title">{{ title }}</p>
|
|
|
|
<el-input v-model="keyword" placeholder="输入关键字进行过滤" size="small" />
|
|
|
|
<div class="scroller">
|
|
<el-tree
|
|
ref="treeRef"
|
|
highlight-current
|
|
node-key="id"
|
|
show-checkbox
|
|
:data="list"
|
|
:props="{
|
|
label: 'name',
|
|
children: 'children'
|
|
}"
|
|
:default-checked-keys="checked"
|
|
:filter-node-method="filterNode"
|
|
@check-change="save"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, onMounted, ref, watch } from "vue";
|
|
import { ElMessage } from "element-plus";
|
|
import { deepTree } from "/@/cool/utils";
|
|
import { useCool } from "/@/cool";
|
|
|
|
export default defineComponent({
|
|
name: "cl-role-perms",
|
|
|
|
props: {
|
|
modelValue: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
title: String
|
|
},
|
|
|
|
emits: ["update:modelValue"],
|
|
|
|
setup(props, { emit }) {
|
|
const { service } = useCool();
|
|
|
|
// 树形列表
|
|
const list = ref<any[]>([]);
|
|
|
|
// 已选列表
|
|
const checked = ref<any[]>([]);
|
|
|
|
// 搜索关键字
|
|
const keyword = ref<string>("");
|
|
|
|
// 加载中
|
|
const loading = ref<boolean>(false);
|
|
|
|
// el-tree 组件
|
|
const treeRef = ref<any>({});
|
|
|
|
// 刷新树
|
|
function refreshTree(val: any[]) {
|
|
if (!val) {
|
|
checked.value = [];
|
|
}
|
|
|
|
const ids: any[] = [];
|
|
|
|
// 处理半选状态
|
|
const fn = (list: any[]) => {
|
|
list.forEach((e) => {
|
|
if (e.children) {
|
|
fn(e.children);
|
|
} else {
|
|
ids.push(Number(e.id));
|
|
}
|
|
});
|
|
};
|
|
|
|
fn(list.value);
|
|
|
|
checked.value = ids.filter((id) => (val || []).includes(id));
|
|
}
|
|
|
|
// 刷新列表
|
|
function refresh() {
|
|
service.base.sys.menu
|
|
.list()
|
|
.then((res: any[]) => {
|
|
list.value = deepTree(res);
|
|
refreshTree(props.modelValue);
|
|
})
|
|
.catch((err: string) => {
|
|
ElMessage.error(err);
|
|
});
|
|
}
|
|
|
|
// 过滤节点
|
|
function filterNode(val: string, data: any) {
|
|
if (!val) return true;
|
|
return data.name.includes(val);
|
|
}
|
|
|
|
// 保存
|
|
function save() {
|
|
// 选中的节点
|
|
const checked = treeRef.value.getCheckedKeys();
|
|
// 半选中的节点
|
|
const halfChecked = treeRef.value.getHalfCheckedKeys();
|
|
|
|
emit("update:modelValue", [...checked, ...halfChecked]);
|
|
}
|
|
|
|
// 过滤监听
|
|
watch(keyword, (val: string) => {
|
|
treeRef.value.filter(val);
|
|
});
|
|
|
|
// 刷新监听
|
|
watch(() => props.modelValue, refreshTree);
|
|
|
|
onMounted(() => {
|
|
refresh();
|
|
});
|
|
|
|
return {
|
|
list,
|
|
checked,
|
|
keyword,
|
|
loading,
|
|
treeRef,
|
|
filterNode,
|
|
save
|
|
};
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.scroller {
|
|
border: 1px solid #dcdfe6;
|
|
margin-top: 5px;
|
|
border-radius: 3px;
|
|
max-height: 200px;
|
|
box-sizing: border-box;
|
|
overflow-x: hidden;
|
|
padding: 5px 0;
|
|
}
|
|
</style>
|