123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <template>
- <div class="tabpanel_tab_content">
- <div class="tabpanel_header">
- <ul class="tabpanel_mover">
- <template v-for="(item) in menus">
- <li :id="item.id" :key="item.id" :class="item.active" @click="selectmenu(item.url)">
- <div class="title"><i :class="item.icon"></i> {{item.text}}</div>
- <div @click.stop="closemenu(item.url)" v-if="item.closeBtn === true" class="closer fa fa-close"></div>
- </li>
- </template>
-
- </ul>
- </div>
- <div class="tabpanel_header_ref">
- <a class="btn btn-link btn-xs" @click="gotab('right')" title="右移选项卡">
- <i class="glyphicon glyphicon-chevron-left"></i>
- </a>
- <el-dropdown @command="handleCommand" menu-align='start'>
- <span class="avator">
- <i class="fa fa-exchange"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="flash">刷新当前页面</el-dropdown-item>
- <el-dropdown-item command="fullScreem">全屏当前页面</el-dropdown-item>
- <el-dropdown-item command="closeother">关闭其他页面</el-dropdown-item>
- <el-dropdown-item command="closeall">关闭全部页面</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- <a class="btn btn-link btn-xs" @click="gotab('left')" title="左移选项卡">
- <i class="glyphicon glyphicon-chevron-right"></i>
- </a>
- </div>
- </div>
- </template>
- <script>
- import { ajax } from "@/common/biConfig";
- import $ from "jquery";
- export default {
- name: "navMenu",
- data() {
- return {
- menus:[{
- id:"b_home",
- text:"首页",
- icon:"fa fa-home",
- url:"/Welcome",
- active:"active",
- closeBtn:false
- }]
- };
- },
- mounted:function(){
-
- },
- methods: {
- gotab(pos){
- var o = $(".tabpanel_mover");
- var left = Number(o.css("marginLeft").replace("px", ""));
- if(pos =='left'){
- left = left - 110;
- }else{
- left = left + 110;
- }
- if(left > 0){
- left = 0;
- }
- var size = $(".tabpanel_mover li").length;
- if(Math.abs(left/110) < size){
- o.css("marginLeft", left+"px");
- }
- },
- menuAdd(menu){
- for(let m of this.menus){
- m.active = "";
- }
- //如果菜单存在,让菜单选中
- let ls = this.menus.filter(function(m){
- return m.url === menu.menuUrl
- });
- if(ls.length >= 1){ //存在
- ls[0].active = "active";
- }else{ //不存在,添加
- this.menus.push({
- id:"b_"+menu.menuId,
- text:menu.menuName,
- icon:menu.avatar,
- url:menu.menuUrl,
- active:"active",
- closeBtn:true
- });
- }
- },
- closemenu(url){
- let ts = this;
- $(this.menus).each((a, b)=>{
- if(b.url === url){
- if(b.active === 'active'){ //删除的刚好是active
- let provNode = ts.menus[a - 1]; //前一个节点
- provNode.active = 'active';
- ts.$router.push(provNode.url);
- }
- ts.menus.splice(a, 1);
- return false;
- }
- });
- },
- selectmenu(url){
- let ts = this;
- for(let m of this.menus){
- m.active = "";
- }
- $(this.menus).each((a, b)=>{
- if(b.url === url){
- b.active = "active";
- ts.$router.push(url);
- return false;
- }
- });
- },
- handleCommand(cmd){
- if(cmd === "closeother"){
- this.menus = this.menus.filter(m=>m.id==='b_home' || m.active === 'active');
- $(this.menus).each((a, b)=>{
- if(b.active === 'active'){
- this.$router.push(b.url);
- return false;
- }
- });
- }else if(cmd === "closeall"){
- this.menus.splice(1, this.menus.length);
- this.menus[0].active = "active";
- this.$router.push(this.menus[0].url);
- }else if(cmd === 'flash'){
- $(this.menus).each((a, b)=>{
- if(b.active === 'active'){
- //this.$router.push(b.url);
- //刷新页面暂时能用。
- return false;
- }
- });
- }
- }
- },
- };
- </script>
- <style lang="css">
- .tabpanel_header {
- width: calc(100% - 80px);
- overflow: hidden;
- display: inline-block;
- }
- .btn-link {
- color: inherit;
- }
- .tabpanel_header_ref {
- width: 80px;
- float: right;
- margin-top:5px;
- }
- .tabpanel_tab_content {
- height: 29px;
- background-color: #f9f9f9;
- overflow: hidden;
- white-space: nowrap;
- position: relative;
- box-shadow: 0 2px 3px 0 rgba(0,0,0,.16), 0 2px 5px 0 rgba(0,0,0,.12);
- z-index: 100;
- }
- .tabpanel_mover {
- margin: 0px;
- padding: 0px;
- position: relative;
- }
- .tabpanel_mover li {
- width: 110px;
- line-height: 20px;
- padding: 5px 10px 5px 10px;
- background-color: #f4f6f8;
- display: inline-block;
- position: relative;
- list-style-type: none;
- cursor: pointer;
- border-right: 1px solid #ddd;
- overflow: hidden;
- }
- .tabpanel_mover li:hover {
- background-color: #e3e1e1;
- }
- .tabpanel_mover li .title {
- font-size: 13px;
- overflow: hidden;
- float: left;
- color: #4285f4;
- width:80px;
- text-overflow:ellipsis;
- }
- .J_mainContent {
- height: 100%;
- overflow: hidden;
- }
- .J_mainContent2 {
- height: calc(100% - 30px);
- overflow: hidden;
- }
- .tabpanel_content .html_content {
- width: 100%;
- height: 100%;
- }
- .tabpanel_mover li .closer {
- position: absolute;
- right: 0px;
- top: 10px;
- width: 15px;
- height: 15px;
- cursor: pointer;
- background:none;
- font-size: 10px;
- display:none;
- color:#4285f4;
- }
- .tabpanel_mover li.active:hover > .closer {
- display:block;
- color:#ffffff;
- }
- .tabpanel_mover li:hover > .closer {
- display:block;
- }
- .tabpanel_mover li.active {
- background-color:#4285f4;
- }
- .tabpanel_mover li.active .title {
- color:#fff;
- }
- </style>
|