elementui table超出两行显示...鼠标已入tip显示

elementui el-table超出两行显示...鼠标已入tip显示

方式一
html 复制代码
<el-table-column 
        label="描述"
        prop="note"
        class-name="myNoteBox"
      >
        <template slot-scope="scope">
          <!-- tips悬浮提示 -->
           <el-tooltip placement="top">
            <div slot="content" class="table-tip-box" >
              {{ scope.row.text}}
            </div>
            <div class="table-ellipsis">{{ scope.row.text}}</div>
          </el-tooltip>  
   </template>
 </el-table-column>
css 复制代码
.table-ellipsis {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
// 提示框的最大宽度
.table-tip-box {
  max-width: 500px;
}
方式二
javascript 复制代码
<el-table-column
        v-if="false"
        label="描述"
        prop="note"
        class-name="myNoteBox"
      >
        <template slot-scope="scope"> 
       <el-popover
            placement="top-start" 
            width="200"
            trigger="hover"
            :content="scope.row.text"
          >
            <div slot="reference" class="twoLineCls">
              {{ scope.row.text}}
            </div>
          </el-popover> 
        </template>
      </el-table-column>
css 复制代码
.twoLineCls {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
相关推荐
打瞌睡的朱尤20 小时前
Vue day12 Vue3认识,写法区分
前端·javascript·vue.js
阿珊和她的猫20 小时前
Vue Router 的使用指南
前端·javascript·vue.js
打瞌睡的朱尤20 小时前
day8 Vue-x
前端·javascript·vue.js
Web打印20 小时前
Phpask(php集成环境)之04配置网站
开发语言·前端·php
一只大侠的侠20 小时前
React Native for OpenHarmony:Calendar 日历组件实现指南
javascript·react native·react.js
Highcharts.js20 小时前
矩形树图Treemap布局算法深度解析:基于Highcharts实现带层级交互的矩形树图
javascript·交互·开发文档·treemap·highcharts·图表类型·矩形树图
一只大侠的侠20 小时前
React Native for OpenHarmony:日期选择功能完整实现指南
javascript·react native·react.js
Zhencode20 小时前
vue3运行时核心模块之runtime-dom
前端·javascript·vue.js
henry10101020 小时前
DeepSeek生成的网页版念经小助手
javascript·css·html5·工具
一只大侠的侠20 小时前
React Native实战:高性能StickyHeader粘性标题组件实现
javascript·react native·react.js