|
|
@ -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,17 +11,29 @@ |
|
|
<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 :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> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</el-scrollbar> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<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-search { |
|
|
|
|
|
position: relative; |
|
|
|
|
|
margin-bottom: 5px; |
|
|
|
|
|
} |
|
|
.icon-list { |
|
|
.icon-list { |
|
|
height: 200px; |
|
|
height: 200px; |
|
|
overflow-y: scroll; |
|
|
:deep(.el-scrollbar) { |
|
|
div { |
|
|
height: 100%; |
|
|
|
|
|
.el-scrollbar__wrap { |
|
|
|
|
|
overflow-x: hidden; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
.list-container { |
|
|
|
|
|
display: flex; |
|
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
|
.icon-item-wrapper { |
|
|
|
|
|
width: calc(100% / 3); |
|
|
height: 30px; |
|
|
height: 30px; |
|
|
line-height: 30px; |
|
|
line-height: 30px; |
|
|
margin-bottom: -5px; |
|
|
margin-bottom: -5px; |
|
|
cursor: pointer; |
|
|
cursor: pointer; |
|
|
width: 33%; |
|
|
display: flex; |
|
|
float: left; |
|
|
.icon-item { |
|
|
|
|
|
display: flex; |
|
|
|
|
|
max-width: 100%; |
|
|
|
|
|
height: 100%; |
|
|
|
|
|
padding: 0 2px; |
|
|
|
|
|
&:hover { |
|
|
|
|
|
background: #ececec; |
|
|
|
|
|
border-radius: 5px; |
|
|
|
|
|
} |
|
|
|
|
|
.icon { |
|
|
|
|
|
flex-shrink: 0; |
|
|
} |
|
|
} |
|
|
span { |
|
|
span { |
|
|
display: inline-block; |
|
|
display: inline-block; |
|
|
vertical-align: -0.15em; |
|
|
vertical-align: -0.15em; |
|
|
fill: currentColor; |
|
|
fill: currentColor; |
|
|
|
|
|
padding-left: 2px; |
|
|
overflow: hidden; |
|
|
overflow: hidden; |
|
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
|
white-space: nowrap; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
.icon-item.active { |
|
|
|
|
|
background: #ececec; |
|
|
|
|
|
border-radius: 5px; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
</style> |
|
|
</style> |