Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
1067567f
Commit
1067567f
authored
Apr 09, 2023
by
尹志芳
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
下拉图标选择组件优化:1.已选择图标高亮回显 2.滚动条采用el-scrollbar
parent
0a670fdf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
19 deletions
+63
-19
index.vue
ruoyi-ui/src/components/IconSelect/index.vue
+62
-18
index.vue
ruoyi-ui/src/views/system/menu/index.vue
+1
-1
No files found.
ruoyi-ui/src/components/IconSelect/index.vue
View file @
1067567f
<!-- @author zhengjie -->
<!-- @author zhengjie -->
<
template
>
<
template
>
<div
class=
"icon-body"
>
<div
class=
"icon-body"
>
<el-input
v-model=
"name"
style=
"position: relative;
"
clearable
placeholder=
"请输入图标名称"
@
clear=
"filterIcons"
@
input=
"filterIcons"
>
<el-input
v-model=
"name"
class=
"icon-search
"
clearable
placeholder=
"请输入图标名称"
@
clear=
"filterIcons"
@
input=
"filterIcons"
>
<i
slot=
"suffix"
class=
"el-icon-search el-input__icon"
/>
<i
slot=
"suffix"
class=
"el-icon-search el-input__icon"
/>
</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
>
<
script
>
import
icons
from
'./requireIcons'
import
icons
from
'./requireIcons'
export
default
{
export
default
{
name
:
'IconSelect'
,
name
:
'IconSelect'
,
props
:
{
activeIcon
:
{
type
:
String
}
},
data
()
{
data
()
{
return
{
return
{
name
:
''
,
name
:
''
,
...
@@ -46,22 +57,55 @@ export default {
...
@@ -46,22 +57,55 @@ export default {
.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
;
::v-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
;
}
}
}
}
}
}
}
}
...
...
ruoyi-ui/src/views/system/menu/index.vue
View file @
1067567f
...
@@ -134,7 +134,7 @@
...
@@ -134,7 +134,7 @@
trigger=
"click"
trigger=
"click"
@
show=
"$refs['iconSelect'].reset()"
@
show=
"$refs['iconSelect'].reset()"
>
>
<IconSelect
ref=
"iconSelect"
@
selected=
"selected"
/>
<IconSelect
ref=
"iconSelect"
@
selected=
"selected"
:active-icon=
"form.icon"
/>
<el-input
slot=
"reference"
v-model=
"form.icon"
placeholder=
"点击选择图标"
readonly
>
<el-input
slot=
"reference"
v-model=
"form.icon"
placeholder=
"点击选择图标"
readonly
>
<svg-icon
<svg-icon
v-if=
"form.icon"
v-if=
"form.icon"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment