vue实现列表上方的查询条件和表头等悬停在上方

本文主要是介绍vue实现列表上方的查询条件和表头等悬停在上方,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

1、代码如下:

2、代码说明

2.1、对头部和表头标签等悬停在上方在cs中维护;

2.2、点击隐藏和收起在mounted中增加点击的监控事件

2.3、针对查询时增加高度的处理:


1、代码如下:

<template ><div class="frame-page" ><z-search-panel class="fixed-search-panel" ><z-form ref="model" :model="formItem" :label-width="125" label-position="right" ><z-row><z-row><z-col :span="8"><z-form-item label="主题:"><z-input v-model="formItem.Object" placeholder="请输入参考主题" clearable></z-input></z-form-item></z-col></z-row><z-spread :no-suspend="true" ><div slot="ilead-more-content"  ><z-button @click="doQuery" icon="ios-search" type="primary">查询</z-button><z-button @click="resetSearch" icon="android-refresh" style="margin-left:10px">重置</z-button></div><z-row><z-col span="8"><z-form-item label="bigObect:"><z-input v-model="formItem.bigObect" placeholder="请输入父主题" clearable></z-input></z-form-item></z-col></z-row></z-spread></z-row></z-form></z-search-panel><z-list-panel class="m-t-10 p-t-10 p-l-10 p-r-10" :style="{height: (this.windowHeight  * 0.725) + 'px'}"><vxe-toolbar style="width: 100%" class="fixed-toolbar"><template v-slot:buttons><div style="width: 100%;"><z-row><z-button type="primary" :loading="loading.list" @click="functionHistory()" >查看历史</z-button></z-row></div></template></vxe-toolbar><vxe-table ref="childTable"class = "mian-table"highlight-hover-rowshow-overflow borderheight="auto"row-id="id" align="center" size="medium":data="tableData":loading="loading.list"@checkbox-change="selectChangeEvent"@checkbox-all="selectAllEvent":checkbox-config="childTableCheckboxConfig"><vxe-table-column type="checkbox" align="center" min-width="40"></vxe-table-column> <!-- fixed="left"--><vxe-table-column resizable field="Object" title="主题" align="center" min-width="120" ></vxe-table-column><vxe-table-column resizable field="bigObject" title="父主题" align="center" min-width="140" ></vxe-table-column><vxe-table-column resizable fixed="right" align="center" min-width="120" title="操作" ><template v-slot="{ row, seq }"><a class="link" @click="edit(row, seq)">维护</a><div class="divider"></div><a class="link" @click="delete(row, seq)">删除</a></template></vxe-table-column></vxe-table><vxe-pagersize="small":loading="loading.list":current-page="tablePage.page":page-size="tablePage.rows":total="tablePage.records":layouts="['PrevPage','JumpNumber','NextPage','FullJump','Sizes','Total']"@page-change="handlePageChange"></vxe-pager></z-list-panel></div>
</template>
<script>
import '@/**/**/vxe-table'
export default {name: 'name',data () {return {windowHeight: 0,formItem: {Object: '', // 主题bigObject: ''},tableData: [],selectData: [],tablePage: {page: 1,rows: 10,records: 0},loading: {list: false}}},mounted () {this.$nextTick().then(() => {const firstNode = document.querySelector('.zvu-btn.zvu-btn-text.zvu-btn.zvu-btn-default.zvu-more-showBtn')console.log('firstNode', firstNode)firstNode.addEventListener('click', this.onClickFirstNode)})this.updateWindowHeight()},beforeDestroy () {window.removeEventListener('resize', this.updateWindowHeight)},methods: {updateWindowHeight () {console.log('updateWindowHeight', window.innerHeight)this.windowHeight = window.innerHeightconsole.log('this.windowHeight', this.windowHeight)},onClickFirstNode () {console.log('onClickFirstNode')let firstNodeSpan = document.querySelector('.zvu-btn.zvu-btn-text.zvu-btn.zvu-btn-default.zvu-more-showBtn span').innerHTMLlet tableHeader = document.querySelector('.mian-table .vxe-table--header-wrapper.body--wrapper')let fixedToolbar = document.querySelector('.fixed-toolbar')if (firstNodeSpan.includes('展开')) {// 收起了 245 295fixedToolbar.style.top = '255px'tableHeader.style.top = '290px'}if (firstNodeSpan.includes('收起')) {// 展开了console.log('firstNodeSpan2', firstNodeSpan)fixedToolbar.style.top = '505px'tableHeader.style.top = '535px'}},doQuery (type) {let that = thisif (type !== 'page') {that.tablePage.page = 1}let params = Object.assign({}, that.formItem, that.tablePage)that.tableData = []that.selectData = []that.loading.list = trueconst zlistpaneldivheight = document.querySelector('.z-list-panel.m-t-10.p-t-10.p-l-10.p-r-10 div:first-child')api.queryData(params).then((response) => {that.tablePage.records = response.data.recordsthat.tableData = response.data.rowszlistpaneldivheight.style.height = ((that.windowHeight) * 0.61) + 'px'that.loading.list = false}).catch((error) => {zlistpaneldivheight.style.height = ((that.windowHeight) * 0.61) + 'px'that.loading.list = falseconsole.log(error)that.$Message.warning('查询异常')})},resetSearch () {let that = thisthat.formItem = {Object: '', bigObject: ''}that.doQuery()},handlePageChange ({ currentPage, pageSize }) {let that = thisthat.tablePage.page = currentPagethat.tablePage.rows = pageSizethat.doQuery('page')},// 刷新refreshTable () {let that = thislet table = that.$refs['childTable']table.syncData()that.doQuery()}}
}
</script>
<style>
.fixed-search-panel {position: sticky; /* 使用sticky定位使工具栏悬停 */top: 120px; /* 从125px开始 */z-index: 100; /* 确保工具栏在最上方 *//*background-color: #fff;  设置背景色 */
}
.fixed-toolbar.vxe-toolbar{ /* .mian-table .z-list-panel  */position: sticky; /* 使用sticky定位使工具栏悬停 */top: 255px; /* 从245px开始 */z-index: 100; /* 确保工具栏在最上方 */display: inline;line-height: 50px;
}
.fixed-toolbar.vxe-toolbar .vxe-button--wrapper div,
.fixed-toolbar.vxe-toolbar .vxe-button--wrapper {width: 100%;background-color: #ffffff; /* 设置背景色 */
}
.mian-table .vxe-body--x-space {position: sticky; /* 使用sticky定位使工具栏悬停 */top: 289px; /* 从289px开始 */z-index: 100; /* 确保工具栏在最上方 */
}
.mian-table .vxe-table--header-wrapper.body--wrapper,
.mian-table .vxe-header--row {position: sticky; /* 使用sticky定位使工具栏悬停 */top: 290px; /* 从290px开始 */z-index: 100; /* 确保工具栏在最上方 *//*background-color: #fff; 设置背景色 */
}
</style>
<style scoped>
.report-rule-date >>> .zvu-form-item-label:before {content: '*';display: inline-block;margin-right: 4px;line-height: 1;font-family: SimSun;font-size: 14px;color: #ed4014;
}
.toolbarselect.zvu-select{width: 150px !important;
}
</style>

2、代码说明

2.1、对头部和表头标签等悬停在上方在cs中维护;

<style>
.fixed-search-panel {position: sticky; /* 使用sticky定位使工具栏悬停 */top: 120px; /* 从125px开始 */z-index: 100; /* 确保工具栏在最上方 *//*background-color: #fff;  设置背景色 */
}
.fixed-toolbar.vxe-toolbar{ /* .mian-table .z-list-panel  */position: sticky; /* 使用sticky定位使工具栏悬停 */top: 255px; /* 从245px开始 */z-index: 100; /* 确保工具栏在最上方 */display: inline;line-height: 50px;
}
.fixed-toolbar.vxe-toolbar .vxe-button--wrapper div,
.fixed-toolbar.vxe-toolbar .vxe-button--wrapper {width: 100%;background-color: #ffffff; /* 设置背景色 */
}
.mian-table .vxe-body--x-space {position: sticky; /* 使用sticky定位使工具栏悬停 */top: 289px; /* 从289px开始 */z-index: 100; /* 确保工具栏在最上方 */
}
.mian-table .vxe-table--header-wrapper.body--wrapper,
.mian-table .vxe-header--row {position: sticky; /* 使用sticky定位使工具栏悬停 */top: 290px; /* 从290px开始 */z-index: 100; /* 确保工具栏在最上方 *//*background-color: #fff; 设置背景色 */
}
</style>

2.2、点击隐藏和收起在mounted中增加点击的监控事件

 mounted () {this.$nextTick().then(() => {const firstNode = document.querySelector('.zvu-btn.zvu-btn-text.zvu-btn.zvu-btn-default.zvu-more-showBtn')console.log('firstNode', firstNode)firstNode.addEventListener('click', this.onClickFirstNode)})
},
methods: {onClickFirstNode () {console.log('onClickFirstNode')let firstNodeSpan = document.querySelector('.zvu-btn.zvu-btn-text.zvu-btn.zvu-btn-default.zvu-more-showBtn span').innerHTMLlet tableHeader = document.querySelector('.mian-table .vxe-table--header-wrapper.body--wrapper')let fixedToolbar = document.querySelector('.fixed-toolbar')if (firstNodeSpan.includes('展开')) {// 收起了 245 295fixedToolbar.style.top = (this.windowHeight * 0.26) + 'px'tableHeader.style.top = (this.windowHeight * 0.31) + 'px'}if (firstNodeSpan.includes('收起')) {// 展开了console.log('firstNodeSpan2', firstNodeSpan)fixedToolbar.style.top = (this.windowHeight * 0.55) + 'px'tableHeader.style.top = (this.windowHeight * 0.58) + 'px'}}
},

2.3、针对查询时增加高度的处理:

首先table 增加强制样式

<z-list-panel class="m-t-10 p-t-10 p-l-10 p-r-10" :style="{height: (this.windowHeight * 0.725) + 'px'}">
</z-list-panel>data(){return {windowHeight: 0}
}mounted () {this.updateWindowHeight() //获取页面高信息},
beforeDestroy () {window.removeEventListener('resize', this.updateWindowHeight)},
methods: {updateWindowHeight () {console.log('updateWindowHeight', window.innerHeight)this.windowHeight = window.innerHeight //采用百分比},//查询doQuery (type) {let that = thisthat.tableData = []that.selectData = []that.loading.list = trueconst zlistpaneldivheight = document.querySelector('.z-list-panel.m-t-10.p-t-10.p-l-10.p-r-10 div:first-child')api.doQuery (params).then((response) => {that.tablePage.records = response.data.recordsthat.tableData = response.data.rowszlistpaneldivheight.style.height = ((that.windowHeight) * 0.61) + 'px'that.loading.list = false}).catch((error) => {zlistpaneldivheight.style.height = ((that.windowHeight) * 0.61) + 'px'that.loading.list = falseconsole.log(error)that.$Message.warning('查询异常')})
}

这篇关于vue实现列表上方的查询条件和表头等悬停在上方的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo