refactor: 优化用户管理代码

This commit is contained in:
2024-11-13 22:42:38 +08:00
parent 293718f670
commit f650a6f3ae
11 changed files with 259 additions and 267 deletions

View File

@@ -1,12 +1,12 @@
<template>
<div class="left-tree">
<div class="left-tree__search">
<a-input v-model="searchKey" :placeholder="props.placeholder" allow-clear>
<div class="container">
<div class="search">
<a-input v-model="searchKey" placeholder="请输入部门名称" allow-clear>
<template #prefix><icon-search /></template>
</a-input>
</div>
<div class="left-tree__container">
<div class="left-tree__tree">
<div class="tree-wrapper">
<div class="tree">
<a-tree
ref="treeRef"
:data="treeData"
@@ -28,12 +28,7 @@
css: true,
}"
>
<!-- eslint-disable-next-line vue/no-parsing-error -->
<template v-if="index = getMatchIndex(node?.title), index < 0">{{ node?.title }}</template>
<span v-else>{{ node?.title?.substr(0, index) }}
<span style="color: rgb(var(--arcoblue-6));">{{ node?.title?.substr(index, searchKey.length) }}</span>
{{ node?.title?.substr(index + searchKey.length) }}
</span>
{{ node?.title }}
</a-typography-paragraph>
</template>
</a-tree>
@@ -47,15 +42,10 @@ import type { TreeInstance, TreeNodeData } from '@arco-design/web-vue'
import { ref } from 'vue'
import { useDept } from '@/hooks/app'
interface Props {
placeholder?: string
}
const props = withDefaults(defineProps<Props>(), {
placeholder: '请输入关键词',
})
const emit = defineEmits<{
(e: 'node-click', keys: Array<any>): void
}>()
// 选中节点
const selectedKeys = ref()
const select = (keys: Array<any>) => {
@@ -83,7 +73,7 @@ const search = (keyword: string) => {
const loop = (data: TreeNodeData[]) => {
const result = [] as TreeNodeData[]
data.forEach((item: TreeNodeData) => {
if (item.title?.toLowerCase().includes(keyword.toLowerCase())) {
if (item.title?.toLowerCase().includes(keyword)) {
result.push({ ...item })
} else if (item.children) {
const filterData = loop(item.children)
@@ -102,20 +92,9 @@ const search = (keyword: string) => {
const treeData = computed(() => {
if (!searchKey.value) return deptList.value
return search(searchKey.value)
return search(searchKey.value.toLowerCase())
})
/**
* 获取匹配索引
*
* @param name 名称
*/
// eslint-disable-next-line unused-imports/no-unused-vars
const getMatchIndex = (name: string) => {
if (!searchKey.value) return -1
return name.toLowerCase().indexOf(searchKey.value.toLowerCase())
}
onMounted(() => {
getDeptList()
})
@@ -152,7 +131,7 @@ onMounted(() => {
}
}
.left-tree {
.container {
flex: 1;
overflow: hidden;
position: relative;
@@ -161,26 +140,25 @@ onMounted(() => {
box-sizing: border-box;
height: 100%;
&__search {
.search {
margin-bottom: 16px;
}
&__container {
.tree-wrapper {
flex: 1;
overflow: hidden;
background-color: var(--color-bg-1);
position: relative;
height: 100%;
margin-bottom:10px;
}
&__tree {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: auto
.tree {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: auto
}
}
}
</style>