IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> Vue + el-table中html返显 + title悬浮显示 + 超长打点 -> 正文阅读

[JavaScript知识库]Vue + el-table中html返显 + title悬浮显示 + 超长打点

0. 整体代码:

【效果】:
在这里插入图片描述
【栗子代码】:

<template>
  <div>
    <el-table @cell-mouse-enter="hoverDate" :row-class-name="tableRowClassName" :data="tableData">
      <el-table-column align="center" label="序号">
        <template v-slot="scope">
          <div :title="scope.row.index+1" v-html="scope.row.index+1" class="title-tips"></div>
        </template>
      </el-table-column>
      <el-table-column prop="keyName" label="名称" min-width="200">
        <template v-slot="scope">
          <div :title="scope.row.keyName" v-html="scope.row.keyName" class="title-tips"></div>
        </template>
      </el-table-column>
      <el-table-column prop="valueByte" label="值" min-width="350">
        <template v-slot="scope">
          <div :id="'valueByte'.concat(scope.$index)" v-html="scope.row.valueByte" class="title-tips"></div>
        </template>
      </el-table-column>
      <el-table-column prop="desc" label="描述" min-width="150">
        <template v-slot="scope">
          <div :id="'desc'.concat(scope.$index)" v-html="scope.row.desc" class="title-tips"></div>
        </template>
      </el-table-column>
      <el-table-column prop="userId" label="最后更新人" min-width="100">
        <template v-slot="scope">
          <div :title="scope.row.userId" v-html="scope.row.userId" class="title-tips"></div>
        </template>
      </el-table-column>
      <el-table-column prop="cTime" label="最后更新时间" min-width="120">
        <template v-slot="scope">
          <div :id="'cTime'.concat(scope.$index)" v-html="scope.row.cTime" class="title-tips"></div>
        </template>
      </el-table-column>
    </el-table>
  </div>
</template>

<script>
export default {
  name: "SideOne",
  methods: {
    // 将行索引设置到row里面
    tableRowClassName ({ row, rowIndex }) {
      row.index = rowIndex
    },
    // 鼠标悬浮显示title
    hoverDate: function (row, column) {
      let id
      if (column.property === "cTime") {
        id = "cTime".concat(row.index)
      } else if (column.property === "valueByte") {
        id = "valueByte".concat(row.index)
      } else if (column.property === "desc") {
        id = "desc".concat(row.index)
      } else {
        return
      }

      let titleVule = document.getElementById(id).textContent
      if (typeof titleVule === 'undefined' || titleVule === null) {
        titleVule = ""
      }
      document.getElementById(id).setAttribute("title", titleVule)
    }
  },
  data: function () {
    return {
      tableData: [
        {
          keyName: "com.test.keyname",
          valueByte: "&lt;noscript&gt;&#xa;&lt;strong&gt;We&#x27;re sorry but vue dosen&#x27;t work &lt;&#x2f;strong&gt;",
          desc: "&lt;div&gt;desc&lt;&#x2f;div&gt;",
          userId: "zhangsan",
          cTime: "2021-08-21&#x3a;22&#x3a;22&#x3a;22"
        }
      ]
    }
  }
}
</script>

<style scoped>
.title-tips {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
</style>

1. html代码反显:

?el-table-column中html代码片段反显,可以使用template+ v-html指令来实现,如:

<el-table-column prop="desc" label="描述" min-width="150">
  <template v-slot="scope">
    <div :id="'desc'.concat(scope.$index)" v-html="scope.row.desc" class="title-tips"></div>
  </template>
</el-table-column>

2. title显示:

?el-table-column可以使用:show-overflow-tooltip="true"来进行单元格内容超长title显示,如:

    <el-table-column prop="desc" label="描述" min-width="150" :show-overflow-tooltip="true">
        <template v-slot="scope">
          <div v-html="scope.row.desc" class="title-tips"></div>
        </template>
      </el-table-column>

?但这只对内容超长时才显示,要想不分内容长短都title显示,就想到document中的title属性
·
?所以栗子代码中使用document来动态设置title属性,要点如下:

  • 通过:row-class-name="tableRowClassName"将行索引设置到row里面
  • 通过 :id="‘valueByte’.concat(scope.$index)"与行索引构成动态绑定id
  • 通过@cell-mouse-enter=“hoverDate” 鼠标进入单元格,触发方法动态绑定,通过id来设置title属性
    // 鼠标悬浮显示title
    hoverDate: function (row, column) {
      let id
      if (column.property === "cTime") {
        id = "cTime".concat(row.index)
      } else if (column.property === "valueByte") {
        id = "valueByte".concat(row.index)
      } else if (column.property === "desc") {
        id = "desc".concat(row.index)
      } else {
        return
      }

      let titleVule = document.getElementById(id).textContent
      if (typeof titleVule === 'undefined' || titleVule === null) {
        titleVule = ""
      }
      document.getElementById(id).setAttribute("title", titleVule)
    }

3. 内容超长打点:

?单元格内容超长时,使用…显示,只要设置如下css样式:

.title-tips {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-08-23 16:34:41  更:2021-08-23 16:37:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:15:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码