首頁 > 軟體

vue在table表中懸浮顯示資料及右鍵選單

2022-04-10 19:00:30

本文範例為大家分享了vue在table表中懸浮顯示資料及右鍵選單的具體程式碼,供大家參考,具體內容如下

懸浮顯示

這個檔案裡是存在的,但很容易被忽略,先看看效果圖

滑鼠放在哪行,就會彈出相對應的描述。

直接看程式碼

//列名及屬性名
<el-table-column prop="member"  label="構件名稱">
//從json資料調取
    <template slot-scope="scope">
    //懸浮顯示資料
    <el-popover trigger="hover" placement="top" >
      <p>構建描述: {{ scope.row.memberTxt }}</p>
      <p>建立時間: {{ scope.row.date2 }}</p>
      <div slot="reference" class="name-wrapper">
      //行顯示資料
        <el-tag size="medium" >
     {{ scope.row.member }}
     //資料後加刪除按鈕
     <el-button icon="el-icon-delete" type="text" class="red" @click="handleDelete(scope.$index,scope.row)">
     </el-button>
     </el-tag>

      </div>
    </el-popover>
    </template>
</el-table-column>

只是這些就足夠了,表的設定無需做更改,用到右鍵選單時才會更改;

右鍵選單

這與上個可以沒有關係,也可是同一個,取決於自己!
依舊是先看圖

右下角的選單就是右鍵的選單了;
我們來看具體實現:
首先就是表格的設定
檔案中表格有這個事件,

<el-table :data="tableData"
   type="expand"
   class="table" 
   ref="multipleTable" 
   header-cell-class-name="table-header"
   @row-contextmenu="rowContextmenu"//主要就是這個事件
   @selection-change="handleSelectionChange">

當然,在表格下面,還要寫重要的一步

<context-button v-if="menuVisible" @foo="foo" ref="contextbutton"
     @handleOne="handleOne" @handleTwo="handleTwo" @handleThree="handleThree"
     @handleFour="handleFour" @handleFive="handleFive"></context-button>

這些@handle對應點選事件

接下來就是methods

rowContextmenu (row, column, event) {
            this.menuVisible = false
            this.menuVisible = true
            // 阻止右鍵預設行為
            event.preventDefault()
            this.$nextTick(() => {
              this.$refs.contextbutton.init(row,column,event)
        this.updForm = row;
            })
      
          },
          foo() { // 取消滑鼠監聽事件 選單欄
            this.menuVisible = false
           /* document.removeEventListener('click', this.foo) */
          },
           handleTwo () {
        
        },
        handleThree () {
        
        },
  handleFour (){
   
        },
  handleFive (row){
  
  }

那些handle開頭的方法是右鍵選單的方法,我自己寫的就不公佈了,知道是點選按鈕事件就可以了
重點,上面我們在表格下面寫了神祕程式碼就要用到了
在你使用的vue介面的目錄下建立一個“contextButton”資料夾,對應 上面的ref即可,注意大小寫!
在資料夾下建立vue頁面

首先是html,也就是右鍵選單顯示的內容了

<template>
  <div id="contextmenu" class="contextmenu">
    <div class="contextmenu__item" @click="handleTwo()">設計資訊</div>
    <div class="contextmenu__item" @click="handleThree()">檢檢視紙</div>
  <div class="contextmenu__item" @click="handleFour()">檢視模型</div>
   <div class="contextmenu__item" @click="handleFive()">修改資訊</div>
  </div>
</template>

然後就是script

export default {
      name: "index",
      data () {
        return {
            collapse: false,                                                                                                                                                                                                                
    }
      },  methods: {
        init (row, column,event) {
         let menu = document.querySelector('#contextmenu')
          let cha = document.body.clientHeight - event.clientY
          console.log(document.body.clientHeight,event.clientY,cha)
          if (cha < 150) {
            menu.style.top = event.clientY -0 + 'px'
          } else {
            menu.style.top = event.clientY -60 + 'px'
          }
          menu.style.left = event.clientX - 200 + 'px'
             document.addEventListener('click', this.foo)
              },
        foo () {
          this.$emit('foo')
        },
         handleTwo () {
          this.$emit('handleTwo')
        },
        handleThree () {
          this.$emit('handleThree')
        },
  handleFour (){
   this.$emit('handleFour')
        },
  handleFive (row){
   this.$emit('handleFive')
  }
  }
    }

位置的話是隨著你右鍵的不同位置二不同的
如果不喜歡這個位置,可以自己改變
最後就是樣式了

 .contextmenu__item {
    display: block;
    line-height: 34px;
    text-align: center;
  }
   .contextmenu__item:not(:last-child) {
    border-bottom: 1px solid rgba(64,158,255,.2);
  }
  .contextmenu {
    position: absolute;
    background-color: #ecf5ff;
    width: 100px;  font-size: 12px;
    color: #409EFF;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgba(64,158,255,.2);
    white-space: nowrap;
    z-index: 1000;
  }
  .contextmenu__item:hover {
    cursor: pointer;
    background: #66b1ff;
    border-color: #66b1ff;
    color: #fff;
  }

顏色什麼的都是我喜歡的,不喜歡的話可以自己改變。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com