当前位置: 代码迷 >> 综合 >> iview/element table组件高度动态设置
  详细解决方案

iview/element table组件高度动态设置

热度:41   发布时间:2023-12-06 22:58:25.0

 一、组件

<Table highlight-row border :columns="columns7" :data="data6" ref="table" :height="tableHeight"></Table>

 二、data数据

tableHeight: null,

三、mounted 钩子

mounted() {let h = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; //浏览器高度let topH = this.$refs.elememtHeight.offsetTop;//表格距浏览器顶部距离let tableHeight =(h - topH)*0.72  //表格应该有的高度   乘以多少可自定义this.tableHeight = tableHeight;},

window.innerHeight 是浏览器的可用高度

this.$refs.elememtHeight.offsetTop 是表格距离浏览器可用高度顶部的距离

  相关解决方案