|
|
@ -2,7 +2,7 @@
|
|
|
|
<div class="icon-body">
|
|
|
|
<div class="icon-body">
|
|
|
|
<el-input
|
|
|
|
<el-input
|
|
|
|
v-model="iconName"
|
|
|
|
v-model="iconName"
|
|
|
|
style="position: relative;"
|
|
|
|
class="icon-search"
|
|
|
|
clearable
|
|
|
|
clearable
|
|
|
|
placeholder="请输入图标名称"
|
|
|
|
placeholder="请输入图标名称"
|
|
|
|
@clear="filterIcons"
|
|
|
|
@clear="filterIcons"
|
|
|
@ -11,10 +11,16 @@
|
|
|
|
<template #suffix><i class="el-icon-search el-input__icon" /></template>
|
|
|
|
<template #suffix><i class="el-icon-search el-input__icon" /></template>
|
|
|
|
</el-input>
|
|
|
|
</el-input>
|
|
|
|
<div class="icon-list">
|
|
|
|
<div class="icon-list">
|
|
|
|
<div v-for="(item, index) in iconList" :key="index" @click="selectedIcon(item)">
|
|
|
|
<el-scrollbar>
|
|
|
|
<svg-icon :icon-class="item" style="height: 30px;width: 16px;" />
|
|
|
|
<div class="list-container">
|
|
|
|
<span>{{ item }}</span>
|
|
|
|
<div v-for="(item, index) in iconList" class="icon-item-wrapper" :key="index" @click="selectedIcon(item)">
|
|
|
|
</div>
|
|
|
|
<div :class="['icon-item', { active: activeIcon === item }]">
|
|
|
|
|
|
|
|
<svg-icon :icon-class="item" class-name="icon" style="height: 30px;width: 16px;" />
|
|
|
|
|
|
|
|
<span :title="item">{{ item }}</span>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-scrollbar>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -22,6 +28,12 @@
|
|
|
|
<script setup>
|
|
|
|
<script setup>
|
|
|
|
import icons from './requireIcons'
|
|
|
|
import icons from './requireIcons'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
|
|
|
activeIcon: {
|
|
|
|
|
|
|
|
type: String
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const iconName = ref('');
|
|
|
|
const iconName = ref('');
|
|
|
|
const iconList = ref(icons);
|
|
|
|
const iconList = ref(icons);
|
|
|
|
const emit = defineEmits(['selected']);
|
|
|
|
const emit = defineEmits(['selected']);
|
|
|
@ -49,26 +61,59 @@ defineExpose({
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang='scss' scoped>
|
|
|
|
<style lang='scss' scoped>
|
|
|
|
.icon-body {
|
|
|
|
.icon-body {
|
|
|
|
width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
.icon-list {
|
|
|
|
.icon-search {
|
|
|
|
height: 200px;
|
|
|
|
position: relative;
|
|
|
|
overflow-y: scroll;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
div {
|
|
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
|
|
|
margin-bottom: -5px;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
width: 33%;
|
|
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
.icon-list {
|
|
|
|
display: inline-block;
|
|
|
|
height: 200px;
|
|
|
|
vertical-align: -0.15em;
|
|
|
|
:deep(.el-scrollbar) {
|
|
|
|
fill: currentColor;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
.el-scrollbar__wrap {
|
|
|
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-container {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.icon-item-wrapper {
|
|
|
|
|
|
|
|
width: calc(100% / 3);
|
|
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
|
|
|
margin-bottom: -5px;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.icon-item {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
padding: 0 2px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
|
|
background: #ececec;
|
|
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
vertical-align: -0.15em;
|
|
|
|
|
|
|
|
fill: currentColor;
|
|
|
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-item.active {
|
|
|
|
|
|
|
|
background: #ececec;
|
|
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</style>
|