Vue中监听窗口大小,修改el-table表格滚动条,控制表格高度
1、绑定表格高度,在el-table标签里面设置:max-height="tableHeight"2、设置表格高度,在data里面设置tableHeight: 0//表格高度3、设置监听窗口变化方法,在methods里面设置handleTableHeight: function() {var _this = this;...
1、绑定表格高度,在el-table标签里面设置
:max-height="tableHeight"
2、设置表格高度,在data里面设置
tableHeight: 0 //表格高度
3、设置监听窗口变化方法,在methods里面设置
handleTableHeight: function() {
var _this = this;
window.onresize = function() {
var t1 = null;
window.clearTimeout(t1);
t1 = setTimeout(function() {
var height = $('.eem-order-event-body').height();
_this.tableHeight = height - 47;
}, 100);
};
window.onresize();
}
4、初始化后进行调用,在mounted里面设置(页面切换时,要重新进行调用)
this.handleTableHeight();
更多推荐
所有评论(0)