Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
T
topology
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
姜立玮
topology
Commits
4bbdc1e8
提交
4bbdc1e8
authored
3月 15, 2020
作者:
RuoYi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复TagsView组件中,鼠标滚轮按下的时候,可以关闭不可关闭的tag
上级
3b871284
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
12 行增加
和
4 行删除
+12
-4
element-ui.scss
ruoyi-ui/src/assets/styles/element-ui.scss
+5
-0
SidebarItem.vue
ruoyi-ui/src/layout/components/Sidebar/SidebarItem.vue
+1
-1
index.vue
ruoyi-ui/src/layout/components/TagsView/index.vue
+6
-3
没有找到文件。
ruoyi-ui/src/assets/styles/element-ui.scss
浏览文件 @
4bbdc1e8
...
...
@@ -77,3 +77,8 @@
.el-range-editor.el-input__inner
{
display
:
inline-flex
!
important
;
}
// to fix el-date-picker css style
.el-range-separator
{
box-sizing
:
content-box
;
}
ruoyi-ui/src/layout/components/Sidebar/SidebarItem.vue
浏览文件 @
4bbdc1e8
<
template
>
<div
v-if=
"!item.hidden"
class=
"menu-wrapper"
>
<div
v-if=
"!item.hidden"
>
<template
v-if=
"hasOneShowingChild(item.children,item) && (!onlyOneChild.children||onlyOneChild.noShowingChildren)&&!item.alwaysShow"
>
<app-link
v-if=
"onlyOneChild.meta"
:to=
"resolvePath(onlyOneChild.path)"
>
<el-menu-item
:index=
"resolvePath(onlyOneChild.path)"
:class=
"
{'submenu-title-noDropdown':!isNest}">
...
...
ruoyi-ui/src/layout/components/TagsView/index.vue
浏览文件 @
4bbdc1e8
...
...
@@ -9,16 +9,16 @@
:to=
"
{ path: tag.path, query: tag.query, fullPath: tag.fullPath }"
tag="span"
class="tags-view-item"
@click.middle.native="
closeSelectedTag(tag)
"
@click.middle.native="
!isAffix(tag)?closeSelectedTag(tag):''
"
@contextmenu.prevent.native="openMenu(tag,$event)"
>
{{
tag
.
title
}}
<span
v-if=
"!
tag.meta.affix
"
class=
"el-icon-close"
@
click
.
prevent
.
stop=
"closeSelectedTag(tag)"
/>
<span
v-if=
"!
isAffix(tag)
"
class=
"el-icon-close"
@
click
.
prevent
.
stop=
"closeSelectedTag(tag)"
/>
</router-link>
</scroll-pane>
<ul
v-show=
"visible"
:style=
"
{left:left+'px',top:top+'px'}" class="contextmenu">
<li
@
click=
"refreshSelectedTag(selectedTag)"
>
刷新页面
</li>
<li
v-if=
"!
(selectedTag.meta&&selectedTag.meta.affix
)"
@
click=
"closeSelectedTag(selectedTag)"
>
关闭当前
</li>
<li
v-if=
"!
isAffix(selectedTag
)"
@
click=
"closeSelectedTag(selectedTag)"
>
关闭当前
</li>
<li
@
click=
"closeOthersTags"
>
关闭其他
</li>
<li
@
click=
"closeAllTags(selectedTag)"
>
关闭所有
</li>
</ul>
...
...
@@ -69,6 +69,9 @@ export default {
isActive
(
route
)
{
return
route
.
path
===
this
.
$route
.
path
},
isAffix
(
tag
)
{
return
tag
.
meta
&&
tag
.
meta
.
affix
},
filterAffixTags
(
routes
,
basePath
=
'/'
)
{
let
tags
=
[]
routes
.
forEach
(
route
=>
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论