当前位置:   article > 正文

vue NavMenu(菜单超出显示更多)_vue 顶部菜单宽度超出处理

vue 顶部菜单宽度超出处理

效果图(不超出)
在这里插入图片描述
效果图(超出)
在这里插入图片描述
代码

<template>
  <div class="box">
    <el-menu
      :default-active="activeIndex"
      class="el-menu-demo menuList"
      mode="horizontal"
      @select="handleSelect"
    >
      <el-menu-item
        v-for="item in data"
        :key="item.id"
        class="menuItem"
        :index="item.id"
        >{{ item.text }}</el-menu-item
      >
      <el-submenu v-if="moreArr.length > 0" class="menuItem" index="99999">
        <template slot="title">更多</template>
        <el-menu-item v-for="i in moreArr" :key="i.id" :index="i.id">{{
          i.text
        }}</el-menu-item>
      </el-submenu>
    </el-menu>
  </div>
</template>

<script>
export default {
  data() {
    return {
      activeIndex: "1",
      activeIndex2: "1",
      data: [
        {
          id: "1",
          text: "处理中心",
        },
        {
          id: "2",
          text: "处理中心2ss",
        },
        {
          id: "3",
          text: "处理中心3",
        },
        {
          id: "4",
          text: "处理中心4",
        },
        {
          id: "5",
          text: "处理中心5",
        },
        {
          id: "6",
          text: "处理中心6",
        },
        {
          id: "7",
          text: "处理中心7",
        },
        {
          id: "8",
          text: "处理中心8",
        },
        {
          id: "9",
          text: "处理中心9",
        },
        {
          id: "10",
          text: "处理中心10",
        },
        {
          id: "11",
          text: "处理中心11",
        },
        {
          id: "12",
          text: "处理中心12",
        },
        {
          id: "13",
          text: "处理中心13",
        },
        {
          id: "14",
          text: "处理中心14",
        },
        {
          id: "15",
          text: "处理中心15",
        },
        {
          id: "16",
          text: "处理中心16",
        },
        {
          id: "17",
          text: "处理中心17",
        },
        {
          id: "18",
          text: "处理中心18",
        },
      ],
      newArr: [],
      existing: 0,
      moreArr: [],
      isb: false,
    };
  },
  computed: {
    activeinHouseList: function () {
      return this.data.filter((item) => {
        return item.text != "更多";
      });
    },
    moreList: function () {
      return this.data.filter((item) => {
        return item.text == "更多";
      });
    },
  },
  mounted() {
    let newArr = JSON.parse(JSON.stringify(this.data));
    let menuitem = document.getElementsByClassName("menuItem");
    let widthArr = [];
    for (let i = 0; i < menuitem.length; i++) {
      widthArr.push(menuitem[i].clientWidth);
    }
    this.isbeyond(widthArr);
    //更多的数组
    let arr = [];
    if (this.existing != 0) {
      arr = newArr.splice(this.existing, newArr.length - 1);
    }
    this.moreArr = arr;
  },
  methods: {
    handleSelect(key, keyPath) {
      console.log(key, keyPath);
    },
    sum(arr) {
      return arr.reduce(function (prev, curr, idx, arr) {
        return prev + curr;
      });
    },
    isbeyond(widthArr) {
      let menu = document.getElementsByClassName("menuList");
      if (this.sum(widthArr) > menu[0].clientWidth) {
        this.isb = true;
        let newArr = this.data.slice(0, this.data.length - 1);
        let newWidthArr = widthArr.slice(0, this.data.length - 1);
        this.data = newArr;
        this.isbeyond(newWidthArr);
      } else {
        if (this.isb) {
          let newArr = this.data.slice(0, this.data.length - 1);
          let newWidthArr = widthArr.slice(0, this.data.length - 1);
          this.data = newArr;
          this.existing = newWidthArr.length;
        }
      }
    },
  },
};
</script>

<style lang="less" scoped>
.box {
  background: #fff;
  width: 80%;
  margin: 0 auto;
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/76794
推荐阅读
相关标签
  

闽ICP备14008679号