新增:新增系统管理/菜单管理(列表、创建、修改、删除、导出)

This commit is contained in:
2023-02-16 23:01:26 +08:00
parent 1319cb3264
commit 510f86031f
306 changed files with 2375 additions and 90 deletions

View File

@@ -0,0 +1,99 @@
<template>
<div class="icon-body">
<a-input-search
v-model="iconName"
placeholder="请输入图标名称"
allow-clear
style="position: relative"
@clear="filterIcons"
@input="filterIcons"
/>
<div class="icon-list">
<div
v-for="(icon, index) in iconList"
:key="index"
@click="handleSelectedIcon(icon)"
>
<svg-icon :icon-class="icon" style="height: 32px; width: 16px" />
<span>{{ icon }}</span>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import icons from './requireIcons';
const iconName = ref('');
const iconList = ref(icons);
const emits = defineEmits(['selected']);
/**
* 过滤图标
*/
const filterIcons = () => {
iconList.value = icons;
if (iconName.value) {
iconList.value = icons.filter(
(icon) => icon.indexOf(iconName.value) !== -1
);
}
};
/**
* 选中图标
*
* @param name 图标名称
*/
const handleSelectedIcon = (name: string) => {
emits('selected', name);
document.body.click();
};
/**
* 重置
*/
const reset = () => {
iconName.value = '';
iconList.value = icons;
};
defineExpose({
reset,
});
</script>
<script lang="ts">
export default {
name: 'IconSelect',
};
</script>
<style scoped lang="less">
.icon-body {
width: 100%;
padding: 10px;
.icon-list {
height: 200px;
width: 420px;
overflow-y: scroll;
div {
height: 30px;
line-height: 35px;
margin-bottom: -5px;
cursor: pointer;
width: 33%;
float: left;
}
span {
display: inline-block;
margin-left: 10px;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
}
}
</style>

View File

@@ -0,0 +1,10 @@
const modules = import.meta.glob('./../../assets/icons/svg/*.svg');
const icons = [] as Array<string>;
// eslint-disable-next-line guard-for-in,no-restricted-syntax
for (const path in modules) {
const p = path.split('assets/icons/svg/')[1].split('.svg')[0];
icons.push(p);
}
export default icons;