vue contextmenujs鼠標右鍵菜單高度不夠顯示不全的問題及解決方法

  之前是采用npm或者yarn直接裝包vue-contextmenujs的形式:

npm install vue-contextmenujs -S || yarn add vue-contextmenujs

  當右鍵點擊記錄時,完整展示應該是如下圖所示:

結果,當點擊靠前的記錄時,頂部一部分記錄被瀏覽器給遮擋瞭,如下圖所示:

  由於是使用的第三方開源組件,所以我直接將組件源碼下載下來,然後修改組件源碼,通過直接在源碼中引入組件的形式調用。組件github倉庫地址:https://github.com/GitHub-Laziji/menujs。

下載組件源碼後,直接將src目錄下的所有文件,拷貝到我們自己項目中的組件文件夾下,我這裡以src\components\global\vue-contextmenujs為例:

  然後修改Submenu.vue中的代碼,下面紅色代碼部分是我修改之後的代碼:

mounted() {
    this.visible = true;
    for (let item of this.items) {
      if (item.icon) {
        this.hasIcon = true;
        break;
      }
    }
    /**
     * 修復超出溢出的問題
     */
    this.$nextTick(() => {
      const windowWidth = document.documentElement.clientWidth;
      const windowHeight = document.documentElement.clientHeight;
      const menu = this.$refs.menu;
      const menuWidth = menu.offsetWidth;
      const menuHeight = menu.offsetHeight;

      (this.openTrend === SUBMENU_OPEN_TREND_LEFT
        ? this.leftOpen
        : this.rightOpen)(windowWidth, windowHeight, menuWidth);
      this.style.top = this.position.y;
      if (this.position.y + menuHeight > windowHeight) {
        if (this.position.height === 0) {
           let diffVal = this.position.y + menuHeight - windowHeight;
           this.style.top = this.position.y - diffVal;
           if(this.position.y<windowHeight/2){//點擊的是上半屏
             if(this.position.y>menuHeight){
               this.style.top = this.position.y;
             }
           }else{//點擊的是下半屏
              if(this.position.y>menuHeight){
               this.style.top = this.position.y-menuHeight;
             }
           }
        } else {
          this.style.top = windowHeight - menuHeight;
        }
      }
    });
  },

  引入組件:

import Contextmenu from '@/components/global/vue-contextmenujs';
Vue.use(Contextmenu);

  現在的運行效果如下:

  此解決方案缺點:雖然能夠解決現有問題,但是如果組件升級瞭,想要使用最新升級後的組件,還要再次修改代碼。

到此這篇關於vue contextmenujs鼠標右鍵菜單高度不夠顯示不全的問題及解決方法的文章就介紹到這瞭,更多相關vue 右鍵菜單顯示不全內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: