el-table表格自动循环向上滚动鼠标放上去停止,移开恢复

本文主要是介绍el-table表格自动循环向上滚动鼠标放上去停止,移开恢复,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

排序的图标是两个图片,点击向后端发请求带不同的参数 

<template><div style="height: 100%" class="table-content"><div :style="{ 'position': 'absolute', 'z-index': '9999', 'right': '3%', 'top': 0 }":class="`tagBtn bg${centerKey}`"><div class="item" @click="centerKey = 1"></div><div class="item" @click="centerKey = 2"></div></div><div style=" flex:1;height:0px" class="table-info" id="table"><el-table class="temp-table" ref="tableRef" @current-change="currChange" highlight-current-row:row-class-name="tableRowClassName" :data="tableData" size="mini" height="100%" :key="rank"@cell-mouse-enter="handleMouseOver" @cell-mouse-leave="handleMouseLeave"><el-table-column prop="rank" label="排名" align="center" min-width="80" show-overflow-tooltip><template #header><div style="display: flex;flex-direction: row;align-items: center;justify-content: center;"@click="sortChange"><span>排名</span><span style="cursor: pointer;" v-if="show"><imgsrc="../../../assets/imgs/jiangxu.png" /></span><span style="cursor: pointer;" v-if="!show"><imgsrc="../../../assets/imgs/shengxu.png" /></span></div></template><template #default="scope"><span>{{ scope.row.rank }}</span></template></el-table-column><el-table-column label="xx" prop="COMMUNITYNAME" min-width="120" align="left" show-overflow-tooltip></el-table-column><el-table-column label="xxx" prop="AVGTEMP" min-width="85" align="center" show-overflow-tooltip></el-table-column><el-table-column v-if="centerKey === 1" label="xxx" prop="LOWTEMP" min-width="120" align="center"show-overflow-tooltip></el-table-column><el-table-column v-else label="xxx" prop="OVERTEMP" min-width="120" align="center" show-overflow-tooltip></el-table-column></el-table></div></div></Card>
</template><script lang="ts">
import { defineComponent, reactive, ref, toRefs, watch, computed, onMounted, onUnmounted, nextTick } from 'vue'
import { useRouter } from 'vue-router'
import { useAppStore } from '@/store/modules/app'
import { listRoomTempRange } from '@/api/Tou/index.ts'export default defineComponent({components: {},props: {intervalTime: {type: Number,default: 20}},setup(props) {// storeconst appStore = useAppStore()const router = useRouter()const state = reactive({tableRef: null,tableData: [],centerKey: 1,type: 0,timer: null,distance: 0,mouserEnter: false, //用来标识鼠标是否在表格区域(防止请求接口之后,鼠标还指示在图表上)mouseScroll: false,currdata: null,show: true,}) as anyconst methods = {sortChange() {state.show = !state.showif (state.show === true) {state.type = 0 // 0降序methods.getData(state.type);} else {state.type = 1 // 1升序methods.getData(state.type);}},getData(type: number) {let params = {temporder: type == 0 ? 0 : 1, // 1升序 0降序}listRoomTempRange(params).then(res => {// 处理成功的响应// 返回的数据顺序是后端处理好的,这里只需要按顺序添加编号即可            const data = res?.data.map((item: any, index: number) => {return {...item,rank: index + 1,}})methods.initData(data);}).catch(error => {// 处理错误的响应console.error(error);});},// 设置行颜色tableRowClassName({ row, rowIndex }) {if (rowIndex % 2 == 0) {return "warning-row";} else if (rowIndex % 2 == 1) {return "success-row";}return "";},// 切换选项抛出事件currChange(val, i) {state.currdata = val;},initData(data) {//根据行数判断表格是否溢出,溢出滚动,否则不滚动if (data.length > 9) {state.tableData = [...data, ...data];} else {state.tableData = data;}//如果当前有选中的话,则请求接口之后高亮此项if (state.currdata) {let index = state.tableData.filter((r) => {if (r.COMMUNITYID == state.currdata.COMMUNITYID) {return r;}});state.tableRef.setCurrentRow(index[0]);} else {// 初始时是默认选中第一条state.tableRef.setCurrentRow(state.tableData[0]);}nextTick(() => {state.tableRef && state.tableRef.doLayout(); //解决表格错位if (data.length > 9 && !state.mouserEnter) {methods.scroll();methods.mouseWheel();}});},// 无缝滚动scroll() {window.clearInterval(state.timer);state.mouserEnter = true;const tableEl = document.getElementById('table')const bodyContent = tableEl.getElementsByClassName('el-table__body')[0];const bodyWrapperHeight = tableEl.getElementsByClassName('el-table__body-wrapper')[0].clientHeight;const bodyContentHeight = tableEl.getElementsByClassName('el-table__body')[0].clientHeight;if (bodyWrapperHeight < bodyContentHeight) {state.timer = setInterval(() => {state.distance -= 1;bodyContent.style.top = `${state.distance % bodyContent.offsetHeight / 2}px`;}, 20);}},// 滚轮滚动mouseWheel() {state.mouserEnter = true;const tableEl = document.getElementById('table')const bodyWrapper = tableEl.getElementsByClassName('el-table__body-wrapper')[0];const bodyContent = tableEl.getElementsByClassName('el-table__body')[0];bodyWrapper.addEventListener('mousewheel', (e) => {// 滚动table的时候,禁止屏幕滚动e.preventDefault();state.distance -= e.deltaY / 2;if (state.distance > 0) {state.distance = 0;}if (bodyContent.offsetHeight > bodyWrapper.offsetHeight) {bodyContent.style.top = `${state.distance % bodyContent.offsetHeight / 2}px`;}}, { passive: false })},// 鼠标移入停止滚动handleMouseOver() {window.clearInterval(state.timer);state.mouserEnter = true;},// 鼠标移出,恢复滚动handleMouseLeave() {methods.scroll();},}const timer2 = ref(null)onMounted(() => {methods.getData(0)timer2.value = setInterval(() => {methods.getData(state.type)}, 1000 * props.intervalTime);})onUnmounted(() => {clearInterval(timer2.value);})return {...toRefs(state),...methods,}}
})
</script><style lang="less" scoped>
.card-info {position: relative;
}.table-content {width: 100%;height: 100%;display: flex;flex-direction: column;overflow: hidden;padding: 3%;.table-info {height: 0;flex: 1;border-radius: 6px;overflow: hidden;}.tagBtn {width: 129px;height: 23px;background: url(../../../assets/imgs/upToPar1.png) no-repeat;background-size: 100% 100%;display: flex;flex-direction: row;justify-content: center;&.bg2 {background: url(../../../assets/imgs/upToPar2.png) no-repeat;background-size: 100% 100%;}&>.item {width: 65px;cursor: pointer;&:last-child {margin-left: 4px;}}}
}.el-table {border-radius: 6px;
}:deep(.el-table td.el-table__cell div) {padding-left: 8px !important;padding-right: 8px !important;font-size: 12px;font-family: MicrosoftYaHei;color: #C0D7FB;line-height: 16px;
}:deep(.el-table th>.cell) {text-align: center;
}::v-deep .el-table .warning-row {height: 36px;background: #070C33;// background: linear-gradient(90deg, rgba(0, 15, 35, 0) 0%, #000E23 100%);
}::v-deep .el-table .success-row {height: 36px;background: #0A1749;// background: rgba(20, 57, 140, 0.34);
}::v-deep .el-table .current-row {height: 36px;background: #043A90;
}::v-deep .el-table--scrollable-y .el-table__body-wrapper {overflow: hidden;
}::v-deep .el-table__body {position: relative;min-height: 100%;width: 100%;
}// 表头样式
.el-table .el-table__header th {background: rgba(26, 131, 255, 0.29);
}:deep(.el-table__header) {height: 46px !important;
}:deep(.el-table thead th.el-table__cell ) {color: #FFFFFF !important;font-size: 14px !important;
}::v-deep .el-table_3_column_11 .is-left .is-leaf {border-radius: 6px 0px 0px 6px;
}:deep(.el-table__body tr.current-row>td) {color: #FFFFFF !important;background-color: #0073FF !important;
}
</style>

 

这篇关于el-table表格自动循环向上滚动鼠标放上去停止,移开恢复的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/556840

相关文章

Python实现精准提取 PDF中的文本,表格与图片

《Python实现精准提取PDF中的文本,表格与图片》在实际的系统开发中,处理PDF文件不仅限于读取整页文本,还有提取文档中的表格数据,图片或特定区域的内容,下面我们来看看如何使用Python实... 目录安装 python 库提取 PDF 文本内容:获取整页文本与指定区域内容获取页面上的所有文本内容获取

MySQL存储过程之循环遍历查询的结果集详解

《MySQL存储过程之循环遍历查询的结果集详解》:本文主要介绍MySQL存储过程之循环遍历查询的结果集,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录前言1. 表结构2. 存储过程3. 关于存储过程的SQL补充总结前言近来碰到这样一个问题:在生产上导入的数据发现

MyBatis Plus 中 update_time 字段自动填充失效的原因分析及解决方案(最新整理)

《MyBatisPlus中update_time字段自动填充失效的原因分析及解决方案(最新整理)》在使用MyBatisPlus时,通常我们会在数据库表中设置create_time和update... 目录前言一、问题现象二、原因分析三、总结:常见原因与解决方法对照表四、推荐写法前言在使用 MyBATis

Python使用smtplib库开发一个邮件自动发送工具

《Python使用smtplib库开发一个邮件自动发送工具》在现代软件开发中,自动化邮件发送是一个非常实用的功能,无论是系统通知、营销邮件、还是日常工作报告,Python的smtplib库都能帮助我们... 目录代码实现与知识点解析1. 导入必要的库2. 配置邮件服务器参数3. 创建邮件发送类4. 实现邮件

html 滚动条滚动过快会留下边框线的解决方案

《html滚动条滚动过快会留下边框线的解决方案》:本文主要介绍了html滚动条滚动过快会留下边框线的解决方案,解决方法很简单,详细内容请阅读本文,希望能对你有所帮助... 滚动条滚动过快时,会留下边框线但其实大部分时候是这样的,没有多出边框线的滚动条滚动过快时留下边框线的问题通常与滚动条样式和滚动行

MySQL的ALTER TABLE命令的使用解读

《MySQL的ALTERTABLE命令的使用解读》:本文主要介绍MySQL的ALTERTABLE命令的使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、查看所建表的编China编程码格式2、修改表的编码格式3、修改列队数据类型4、添加列5、修改列的位置5.1、把列

使用C#删除Excel表格中的重复行数据的代码详解

《使用C#删除Excel表格中的重复行数据的代码详解》重复行是指在Excel表格中完全相同的多行数据,删除这些重复行至关重要,因为它们不仅会干扰数据分析,还可能导致错误的决策和结论,所以本文给大家介绍... 目录简介使用工具C# 删除Excel工作表中的重复行语法工作原理实现代码C# 删除指定Excel单元

使用Python实现网页表格转换为markdown

《使用Python实现网页表格转换为markdown》在日常工作中,我们经常需要从网页上复制表格数据,并将其转换成Markdown格式,本文将使用Python编写一个网页表格转Markdown工具,需... 在日常工作中,我们经常需要从网页上复制表格数据,并将其转换成Markdown格式,以便在文档、邮件或

Python使用pynput模拟实现键盘自动输入工具

《Python使用pynput模拟实现键盘自动输入工具》在日常办公和软件开发中,我们经常需要处理大量重复的文本输入工作,所以本文就来和大家介绍一款使用Python的PyQt5库结合pynput键盘控制... 目录概述:当自动化遇上可视化功能全景图核心功能矩阵技术栈深度效果展示使用教程四步操作指南核心代码解析

SpringBoot实现文件记录日志及日志文件自动归档和压缩

《SpringBoot实现文件记录日志及日志文件自动归档和压缩》Logback是Java日志框架,通过Logger收集日志并经Appender输出至控制台、文件等,SpringBoot配置logbac... 目录1、什么是Logback2、SpringBoot实现文件记录日志,日志文件自动归档和压缩2.1、