1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > ant design vue给table设置斑马条纹样式

ant design vue给table设置斑马条纹样式

时间:2024-03-05 08:21:14

相关推荐

ant design vue给table设置斑马条纹样式

效果图

<a-table :columns="columns" :data-source="data"></a-table>

css设置:

<style lang="less" scoped>/* 表格斑马样式 **//deep/.ant-table-tbody tr:nth-child(2n){background-color:#fafafa;}</style>

js设置:

参考链接:/yorcentroll/article/details/105765457

renderStripe () {const table = document.getElementsByClassName( 'ant-table-row')if (table.length > 0){const rowList = [ ...table]rowList.forEach(row =>{const index = rowList.indexOf(row)if (index % 2 !== 0){row.style.backgroundColor = '#FAFAFA'}else {row.style.backgroundColor = '#ffffff'}})}}

updated时调用,或者mounted是延时调用,视情况而定,总之要在表格实例化之后再调用

总结:推荐css

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。