给出需求为ant-table的表格固定表头。其实在Ant的官方文档中已经给出了指导和代码。我们看一下官网贴出来的代码:

  <a-table
    :columns="columns"
    :dataSource="data"
    :pagination="{ pageSize: 50 }"
    :scroll="{ y: 240 }"
  />

同时给出说明:

需要指定 column 的 width 属性,否则列头和内容可能不对齐。如果指定 width 不生效或出现白色垂直空隙,请尝试建议留一列不设宽度以适应弹性布局,或者检查是否有超长连续字段破坏布局。

 我们可以看到columns应该已经在data里面获取了,我的数据如下:

columns: [
        { title: 'title1', dataIndex: 'index1', scopedSlots: { customRender: 'customRender1' } },
        { title: 'title2', dataIndex: 'index2', scopedSlots: { customRender: 'customRender2' } },
        ......
]

但是在显示的时候数据错位。按照官方提供的方法、参考博客园大佬https://www.cnblogs.com/syll/p/10514487.html最终解决。

{ title: 'title2', dataIndex: 'index2', scopedSlots: { customRender: 'customRender2' },width:(输入你要的宽度) },

没有设置宽度的列会自动获取剩余宽度。另外注意Ant-design-vue和ant-design-react是语法不同的,在使用时请多注意。这里贴上Ant-design-vue的官方文档网站

https://www.antdv.com

Logo

前往低代码交流专区

更多推荐