本文介绍: 为所有表头单元格设置一样的 Style(上述代码用的是固定的Object写法,所以在此就不再详细说明了)。这里描述的是如何使用函数写法进行操作。单个表格内容(即独列)居中align=’center’头部居中headercellstyle单元格内容居中cell-style。:表头单元格style 的。固定的 Object
整个表格内容层的居中方式

头部居中:headercell-style

单元格内容居中:cell-style

<el-table
    :data="tableData"
    :header-cell-style="{'text-align':'center'}"
    :cell-style="{'text-align':'center'}"
    style="width: 100%">
</el-table>

单个表格内容(即独列)居中:align=’center’

<el-table-column label="名称" prop="nickName" align="center"&gt;
</el-table-column&gt;

拓展:

header-cell-style更改表头样式:表头单元格style 的回调方法,也可以使用一个固定的 Object 为所有表头单元格设置一样的 Style(上述代码用的是固定的Object的写法,所以在此就不再详细说明了)。这里描述的是如何使用函数写法进行操作

<el-table :header-cell-style="rowClass"&gt;</el-table&gt;
<script&gt;
    export default {
      methods :{
        rowClass({ row, rowIndex}) {
            console.log(rowIndex) //表头行标号为0
            return 'background:red'
        }
      }
    }
</script>

cell-style更改表格中某个单元格的样式:

<el-table :cell-style="cellStyle"></el-table>
<script>
    export default {
      methods :{
        cellStyle({ row, column, rowIndex, columnIndex}) {
            if(rowIndex === 1 &amp;&amp; columnIndex === 2){ //指定坐标
                return 'background:pink'
            }else{
                return 'background:red'
            }
        }
      }
    }
</script>

原文地址:https://blog.csdn.net/weixin_73318685/article/details/129518573

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_7131.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注