Skip to content

Commit

Permalink
Merge pull request #1011 from iview/2.0
Browse files Browse the repository at this point in the history
恢复添加标签导航右侧关闭下拉菜单,同时还支持在标签上右键关闭
  • Loading branch information
Lison committed Oct 9, 2018
2 parents 87591f7 + 30d7d6a commit 2091e11
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/main/components/tags-nav/tags-nav.less
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@
left: 0px;
}
&.right-btn{
right: 0px;
right: 32px;
border-right: 1px solid #F0F0F0;
}
}
.scroll-outer{
position: absolute;
left: 28px;
right: 28px;
right: 61px;
top: 0;
bottom: 0;
box-shadow: 0px 0 3px 2px rgba(100,100,100,.1) inset;
Expand Down
15 changes: 13 additions & 2 deletions src/components/main/components/tags-nav/tags-nav.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
<template>
<div class="tags-nav">
<div class="close-con">
<Dropdown transfer @on-click="handleTagsOption" style="margin-top:7px;">
<Button size="small" type="text">
<Icon :size="18" type="ios-close-circle-outline" />
</Button>
<DropdownMenu slot="list">
<DropdownItem name="close-all">关闭所有</DropdownItem>
<DropdownItem name="close-others">关闭其他</DropdownItem>
</DropdownMenu>
</Dropdown>
</div>
<ul v-show="visible" :style="{left: contextMenuLeft + 'px', top: contextMenuTop + 'px'}" class="contextmenu">
<li v-for="(item, key) of menuList" @click="handleTagsOption(key)" :key="key">{{item}}</li>
</ul>
Expand Down Expand Up @@ -95,11 +106,11 @@ export default {
}
},
handleTagsOption (type) {
if (type === 'all') {
if (type.includes('all')) {
// 关闭所有,除了home
let res = this.list.filter(item => item.name === 'home')
this.$emit('on-close', res, 'all')
} else if (type === 'others') {
} else if (type.includes('others')) {
// 关闭除当前页和home页的其他页
let res = this.list.filter(item => routeEqual(this.currentRouteObj, item) || item.name === 'home')
this.$emit('on-close', res, 'others', this.currentRouteObj)
Expand Down

0 comments on commit 2091e11

Please sign in to comment.