vue修改Element的el-table样式的4种方法

时间:2021-05-26

修改Element中的el-table样式,可以使用以下几种方法:

  1. row-style 行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style。

  2. cell-style 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style。

  3. header-row-style 表头行的 style 的回调方法,也可以使用一个固定的 Object 为所有表头行设置一样的 Style。

  4. header-cell-style 表头单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有表头单元格设置一样的 Style。

示例代码如下:

<template> <div> <div style="width:700px;margin: 0 auto;"> <el-table :data="tableData" height="300" border stripe="true" :row-style="tableRowStyle" :header-cell-style="tableHeaderColor" style="width: 100%"> <el-table-column prop="tag" label="tag" width="150"> </el-table-column> <el-table-column prop="confidence" label="confidence" width="180"> </el-table-column> <el-table-column prop="category_tag_level" label="category_tag_level"> </el-table-column> </el-table> </div> </div></template><script> export default{ data () { return { tableData: [{ tag: '体育', confidence: '0.8213628173213', category_tag_level: '123' }, { tag: '体育', confidence: '0.8213628173213', category_tag_level: '123' }, { tag: '体育', confidence: '0.8213628173213', category_tag_level: '123' }, { tag: '体育', confidence: '0.8213628173213', category_tag_level: '123' }, { tag: '体育', confidence: '0.8213628173213', category_tag_level: '123' }, { tag: '体育', confidence: '0.8213628173213', category_tag_level: '123' }, { tag: '体育', confidence: '0.8213628173213', category_tag_level: '123' }] } }, methods:{ //设置表格行的样式 tableRowStyle({row,rowIndex}){ return 'background-color:pink;font-size:15px;' }, //设置表头行的样式 tableHeaderColor({row,column,rowIndex,columnIndex}){ return 'background-color:lightblue;color:#fff;font-wight:500;font-size:20px;text-align:center' } } }</script><style></style>

效果如下所示:

以上就是vue修改Element的el-table样式的4种方法的详细内容,更多关于vue修改Element的el-table样式的资料请关注其它相关文章!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章