当前位置: 首页 > article >正文

042:el-table表格表头自定义高度(亲测好用)

在这里插入图片描述

第042个

查看专栏目录: VUE ------ element UI


专栏目标

在vue和element UI联合技术栈的操控下,本专栏提供行之有效的源代码示例和信息点介绍,做到灵活运用。

(1)提供vue2的一些基本操作:安装、引用,模板使用,computed,watch,生命周期(beforeCreate,created,beforeMount,mounted, beforeUpdate,updated, beforeDestroy,destroyed,activated,deactivated,errorCaptured,components,)、 $root , $parent , $children , $slots , $refs , props, $emit , eventbus ,provide / inject, Vue.observable, $listeners, $attrs, $nextTick , v-for, v-if, v-else,v-else-if,v-on,v-pre,v-cloak,v-once,v-model, v-html, v-text, keep-alive,slot-scope, filters, v-bind,.stop, .native, directives,mixin,render,国际化,Vue Router等

(2)提供element UI的经典操作:安装,引用,国际化,el-row,el-col,el-button,el-link,el-radio,el-checkbox ,el-input,el-select, el-cascader, el-input-number, el-switch,el-slider, el-time-picker, el-date-picker, el-upload, el-rate, el-color-picker, el-transfer, el-form, el-table, el-tree, el-pagination,el-badge,el-avatar,el-skeleton, el-empty, el-descriptions, el-result, el-statistic, el-alert, v-loading, $message, $alert, $prompt, $confirm , $notify, el-breadcrumb, el-page-header,el-tabs ,el-dropdown,el-steps,el-dialog, el-tooltip, el-popover, el-popconfirm, el-card, el-carousel, el-collapse, el-timeline, el-divider, el-calendar, el-image, el-backtop,v-infinite-scroll, el-drawer等

本文章目录

    • 专栏目标
    • 应用场景
    • 示例效果
    • 示例源代码(共80行)
    • 核心代码

应用场景

vue项目中,我们需要在el-table中将表格表头的高度增大,这个问题很多小伙伴都遇到过,解决起来还真的不容易。博主经过一番探索,发现设置height之类的不管用,能解决问题的方法是设置好line-height。将这个值设高了,才能解决问题。具体设置请参考源代码

示例效果

在这里插入图片描述

示例源代码(共80行)

/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: 2909222303@qq.com
* @weixin: gis-dajianshi
* @First published in CSDN
* @First published time: 2023-12-08
*/

<template>
	<div class="djs-box">
		<div class="topBox">
			<h3>el-table 标题栏自定义高度</h3>
			<div>大剑师兰特, 还是大剑师兰特,gis-dajianshi</div>
		</div>
		<div class="cbox">
			<el-table :data="tableData" style="width: 100%;border: 1px solid #DDE1E6 ;border-radius: 4px;"
		:header-cell-style="{ background: '#abf',color: '#404A53', padding: '0px 0px', textAlign: 'left',}"
		:cell-style="{ padding: '8px 10px 8px 0', textAlign: 'left' }">
				<el-table-column prop="title" label="图片" width="180">
					<template slot-scope="scope">
						<el-image :src="scope.row.thumbnail_pic_s"></el-image>
					</template>
				</el-table-column>
				<el-table-column prop="date" label="日期" width="180">
				</el-table-column>
				<el-table-column label="混合数据">
					<template slot-scope="scope">
							<div>文章标题:{{scope.row.title}}</div>	
					</template>
				</el-table-column>
			</el-table>
		</div>
	</div>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [],
			}
		},
		mounted() {
			this.getdata()
		},
		methods: {
			getdata() {
				let url = "/listdata"
				this.$request(url, {}, "GET")
					.then((res) => {
						this.tableData = res.data.data
						console.log(this.tableData)
					})
			},
		}

	}
</script>
<style scoped>
	.djs-box {
		width: 900px;
		height: 600px;
		margin: 50px auto;
		border: 1px solid seagreen;
	}

	.topBox {
		margin: 0 auto 0px;
		padding: 10px 0;
		background: red;
		color: #fff;
	}
	/* 核心代码 */
    .cbox >>>.el-table th.el-table__cell>.cell{ line-height: 90px;}  
	.cbox {padding: 10px;}
</style>


核心代码

.cbox >>>.el-table th.el-table__cell>.cell{ line-height: 90px;}  


http://www.kler.cn/a/162834.html

相关文章:

  • 相机光学(四十二)——sony的HDR技术
  • 《C++在金融领域的技术革命:高效、安全与创新的融合》
  • HarmonyOS 如何实现传输中的数据加密
  • mongoDB的安装及使用
  • Kafka - 启用安全通信和认证机制_SSL + SASL
  • [Docker#8] 容器配置 | Mysql | Redis | C++ | 资源控制 | 命令对比
  • 硬件开发笔记(十五):RK3568底板电路VGA显示接口原理图分析
  • Docker网络原理
  • vue2 百度地图实现 车在线路上移动 BMap、BMapGL
  • 【页面】表格展示
  • 如何切换用户和更改用户密码
  • Windows核心编程 HOOK
  • 2024山东健博会,济南健康展,5月中国大健康展,健康管理展
  • ubuntu安装tomcat并配置前端项目
  • 虾皮跨境电商网:东南亚领先的电商平台
  • LVS-DR+Keepalived+动静分离实验
  • 对系统的 Go 版本进行升级
  • Python 接口自动化 —— requests框架
  • IPoIB在国产并行系统上的实现与优化
  • 16mic圆形麦克风阵列电路与声源定位算法设计
  • 【Java数据结构 -- List和ArrayList与顺序表】
  • 实现:切换页面切换标题,扩展 vue-router 的类型
  • 【PyTorch】多层感知机
  • 算法-滑动窗口
  • WT588F02B-8S语音芯片助力破壁机:智能声音播放提示IC引领健康生活新潮流
  • 了解linux计划任务