鼠标悬浮在表格行上时,符合条件的数据会有提示文字
在这里再详细的描述一下文章解决的问题,比如说现在你的页面上有一个表格 el-table ,这个表格有两列,分别是姓名,性别。但是后端传过来的其实是三列(还有一个是分数),可是业务要求是不展示分数。这时当你的鼠标悬浮在表格行上时,如果这个同学的分数是100,那就会在这行上悬浮显示:这个小孩真牛逼!
主要就是用cell-mouse-enter和cell-mouse-leave文章来源:https://www.toymoban.com/news/detail-531701.html
下面是图示:
文章来源地址https://www.toymoban.com/news/detail-531701.html
template
<el-table
:data="invCaseList"
@cell-mouse-enter="caseRowEnter"
@cell-mouse-leave="caseRowLeave"
>
<el-table-column
sortable="custom"
prop="inv_invest_plan_d"
:label="'拟投入募集资金金额\n(亿元)'" min-width="15%" align="right">
<template slot-scope="scope">
<div v-if="scope.row.projectSummary">
<div v-if="scope.row.investPlan">{{scope.row.investPlan}}</div>
</div>
<div v-else>
<el-popover trigger="hover" placement="top" :ref="'popover' + scope.row.id" >
<span>提示:该募投项目未披露项目信息,无法查看项目详情</span>
<div slot="reference">
<div>{{scope.row.investPlan}}</div>
</div>
</el-popover>
</div>
</template>
</el-table-column>
</el-table>
//文章中的projectSummary 就相当于上面所说的分数 investPlan相当于姓名
// 这个提示框你自己选择要放在哪个位置
methods
caseRowEnter(row){
if (!row.projectSummary) {
this.$refs['popover'+row.id].showPopper = true
}
},
caseRowLeave(row){
this.$refs['popover'+row.id].showPopper = false
},
到了这里,关于鼠标悬浮在表格行上时,符合条件的数据会有提示文字的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!