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

相关文章

SpringBoot实现RSA+AES自动接口解密的实战指南

《SpringBoot实现RSA+AES自动接口解密的实战指南》在当今数据泄露频发的网络环境中,接口安全已成为开发者不可忽视的核心议题,RSA+AES混合加密方案因其安全性高、性能优越而被广泛采用,本... 目录一、项目依赖与环境准备1.1 Maven依赖配置1.2 密钥生成与配置二、加密工具类实现2.1

Python使用Tenacity一行代码实现自动重试详解

《Python使用Tenacity一行代码实现自动重试详解》tenacity是一个专为Python设计的通用重试库,它的核心理念就是用简单、清晰的方式,为任何可能失败的操作添加重试能力,下面我们就来看... 目录一切始于一个简单的 API 调用Tenacity 入门:一行代码实现优雅重试精细控制:让重试按我

SQL Server跟踪自动统计信息更新实战指南

《SQLServer跟踪自动统计信息更新实战指南》本文详解SQLServer自动统计信息更新的跟踪方法,推荐使用扩展事件实时捕获更新操作及详细信息,同时结合系统视图快速检查统计信息状态,重点强调修... 目录SQL Server 如何跟踪自动统计信息更新:深入解析与实战指南 核心跟踪方法1️⃣ 利用系统目录

Spring Security 单点登录与自动登录机制的实现原理

《SpringSecurity单点登录与自动登录机制的实现原理》本文探讨SpringSecurity实现单点登录(SSO)与自动登录机制,涵盖JWT跨系统认证、RememberMe持久化Token... 目录一、核心概念解析1.1 单点登录(SSO)1.2 自动登录(Remember Me)二、代码分析三、

MySQL CTE (Common Table Expressions)示例全解析

《MySQLCTE(CommonTableExpressions)示例全解析》MySQL8.0引入CTE,支持递归查询,可创建临时命名结果集,提升复杂查询的可读性与维护性,适用于层次结构数据处... 目录基本语法CTE 主要特点非递归 CTE简单 CTE 示例多 CTE 示例递归 CTE基本递归 CTE 结

MyBatis-Plus 自动赋值实体字段最佳实践指南

《MyBatis-Plus自动赋值实体字段最佳实践指南》MyBatis-Plus通过@TableField注解与填充策略,实现时间戳、用户信息、逻辑删除等字段的自动填充,减少手动赋值,提升开发效率与... 目录1. MyBATis-Plus 自动赋值概述1.1 适用场景1.2 自动填充的原理1.3 填充策略

MySQL 8 中的一个强大功能 JSON_TABLE示例详解

《MySQL8中的一个强大功能JSON_TABLE示例详解》JSON_TABLE是MySQL8中引入的一个强大功能,它允许用户将JSON数据转换为关系表格式,从而可以更方便地在SQL查询中处理J... 目录基本语法示例示例查询解释应用场景不适用场景1. ‌jsON 数据结构过于复杂或动态变化‌2. ‌性能要

解决1093 - You can‘t specify target table报错问题及原因分析

《解决1093-Youcan‘tspecifytargettable报错问题及原因分析》MySQL1093错误因UPDATE/DELETE语句的FROM子句直接引用目标表或嵌套子查询导致,... 目录报js错原因分析具体原因解决办法方法一:使用临时表方法二:使用JOIN方法三:使用EXISTS示例总结报错原

SpringBoot+Docker+Graylog 如何让错误自动报警

《SpringBoot+Docker+Graylog如何让错误自动报警》SpringBoot默认使用SLF4J与Logback,支持多日志级别和配置方式,可输出到控制台、文件及远程服务器,集成ELK... 目录01 Spring Boot 默认日志框架解析02 Spring Boot 日志级别详解03 Sp

使用Python实现可恢复式多线程下载器

《使用Python实现可恢复式多线程下载器》在数字时代,大文件下载已成为日常操作,本文将手把手教你用Python打造专业级下载器,实现断点续传,多线程加速,速度限制等功能,感兴趣的小伙伴可以了解下... 目录一、智能续传:从崩溃边缘抢救进度二、多线程加速:榨干网络带宽三、速度控制:做网络的好邻居四、终端交互