| | |
| | | :to="{ path: tag.path, query: tag.query, fullPath: tag.fullPath }" |
| | | tag="span" |
| | | class="tags-view-item" |
| | | :style="{background:isActive(tag)?$store.state.settings.theme:'',border:isActive(tag)?'1px solid'+$store.state.settings.theme:''}" |
| | | @click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''" |
| | | @contextmenu.prevent.native="openMenu(tag,$event)" |
| | | > |
| | |
| | | <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="!isAffix(selectedTag)" @click="closeSelectedTag(selectedTag)">关闭</li>--> |
| | | <!-- <li @click="closeOthersTags">关闭其他</li>--> |
| | | <!-- <li @click="closeAllTags(selectedTag)">关闭所有</li>--> |
| | | <!-- </ul>--> |
| | | <ul v-show="visible" :style="{left:left+'px',top:top+'px'}" class="contextmenu"> |
| | | <li @click="refreshSelectedTag(selectedTag)">刷新</li> |
| | | <li v-if="!isAffix(selectedTag)" @click="closeSelectedTag(selectedTag)">关闭</li> |
| | | <li @click="closeOthersTags">关闭其他</li> |
| | | <li @click="closeAllTags(selectedTag)">关闭所有</li> |
| | | </ul> |
| | | |
| | | <el-dialog |
| | | title="提示" |
| | | :visible.sync="dialogVisible" |
| | | width="500px" |
| | | :close-on-click-modal="false" |
| | | > |
| | | <div> |
| | | 现页签打开超过10个,请关闭其它标签 |
| | | </div> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <div class="footerButton"> |
| | | <el-button @click="dialogVisibleCancel">返回</el-button> |
| | | </div> |
| | | </span> |
| | | </el-dialog> |
| | | |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import ScrollPane from './ScrollPane' |
| | | import path from 'path' |
| | | import { getCookie } from '@/utils/auth' |
| | | import $ from 'jquery' |
| | | |
| | | export default { |
| | | components: { ScrollPane }, |
| | |
| | | top: 0, |
| | | left: 0, |
| | | selectedTag: {}, |
| | | affixTags: [] |
| | | affixTags: [], |
| | | dialogVisible: false |
| | | } |
| | | }, |
| | | computed: { |
| | | visitedViews() { |
| | | // 暂时取消十个标签页限制提示 |
| | | // if (this.$store.state.tagsView.visitedViews.length > 10) { |
| | | // // eslint-disable-next-line vue/no-side-effects-in-computed-properties |
| | | // this.dialogVisible = true |
| | | // } |
| | | return this.$store.state.tagsView.visitedViews |
| | | }, |
| | | routes() { |
| | |
| | | mounted() { |
| | | this.initTags() |
| | | this.addTags() |
| | | this.beforeUnload() |
| | | }, |
| | | methods: { |
| | | // 解决 vue-admin-template 刷新页面 TagsView 丢失问题 |
| | | beforeUnload() { |
| | | // 监听页面刷新 |
| | | window.addEventListener('beforeunload', () => { |
| | | // visitedViews数据结构太复杂无法直接JSON.stringify处理,先转换需要的数据 |
| | | const tabViews = this.visitedViews.map(item => { |
| | | return { |
| | | fullPath: item.fullPath, |
| | | hash: item.hash, |
| | | meta: { ...item.meta }, |
| | | name: item.name, |
| | | params: { ...item.params }, |
| | | path: item.path, |
| | | query: { ...item.query }, |
| | | title: item.title |
| | | } |
| | | }) |
| | | sessionStorage.setItem('tabViews', JSON.stringify(tabViews)) |
| | | }) |
| | | |
| | | // 页面初始化加载判断缓存中是否有数据 |
| | | const oldViews = JSON.parse(sessionStorage.getItem('tabViews')) || [] |
| | | if (oldViews.length > 0) { |
| | | this.$store.state.tagsView.visitedViews = oldViews |
| | | } |
| | | }, |
| | | |
| | | // 对话框返回 |
| | | dialogVisibleCancel() { |
| | | this.dialogVisible = false |
| | | }, |
| | | |
| | | isActive(route) { |
| | | // if (this.$route.path === '/scgl/sckbg') { |
| | | // const time = setInterval(() => { |
| | | // this.$nextTick(() => { |
| | | // $("input[name='produceCode']")[0].focus() |
| | | // $("input[name='WXproduceCode']")[0].focus() |
| | | // clearInterval(time) |
| | | // }) |
| | | // }) |
| | | // } |
| | | return route.path === this.$route.path |
| | | }, |
| | | isAffix(tag) { |
| | |
| | | } |
| | | </script> |
| | | |
| | | <style lang="scss" scoped> |
| | | $main_color :#42b983; |
| | | <style lang="scss"> |
| | | $main_color: #42b983; |
| | | .tags-view-container { |
| | | height: 34px; |
| | | width: 100%; |
| | | background: #fff; |
| | | border-bottom: 1px solid #d8dce5; |
| | | box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 0 3px 0 rgba(0, 0, 0, .04); |
| | | |
| | | .tags-view-wrapper { |
| | | .tags-view-item { |
| | | display: inline-block; |
| | |
| | | font-size: 12px; |
| | | margin-left: 5px; |
| | | margin-top: 4px; |
| | | |
| | | &:first-of-type { |
| | | margin-left: 15px; |
| | | } |
| | | |
| | | &:last-of-type { |
| | | margin-right: 15px; |
| | | } |
| | | |
| | | &.active { |
| | | background-color:$main_color; |
| | | background-color: $main_color; |
| | | color: #fff; |
| | | border-color:$main_color; |
| | | border-color: $main_color; |
| | | |
| | | &::before { |
| | | content: ''; |
| | | background: #fff; |
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | .contextmenu { |
| | | margin: 0; |
| | | background: #fff; |
| | |
| | | font-weight: 400; |
| | | color: #333; |
| | | box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .3); |
| | | |
| | | li { |
| | | margin: 0; |
| | | padding: 7px 16px; |
| | | cursor: pointer; |
| | | |
| | | &:hover { |
| | | background: #eee; |
| | | } |
| | |
| | | text-align: center; |
| | | transition: all .3s cubic-bezier(.645, .045, .355, 1); |
| | | transform-origin: 100% 50%; |
| | | |
| | | &:before { |
| | | transform: scale(.6); |
| | | display: inline-block; |
| | | vertical-align: -3px; |
| | | } |
| | | |
| | | &:hover { |
| | | background-color: #b4bccc; |
| | | color: #fff; |