表格里面的居中,css里写
.ant-table-thead > tr > th > {
text-align: center;
}
.ant-table-tbody > tr > td {
text-align: center;
}
表头内容居中,在columns写
const columns = [
{
title: '活动标题',
dataIndex: 'title',
key: 'title',
align: 'center' // 设置文本居中的属性
},
{
title: '编辑时间',
dataIndex: 'createTime',
key: 'createTime',
align: 'center'
},
];