<s-table
bordered
ref="irrigationWaterTable"
size="default"
:rowKey="(record) => record.id"
:columns="columns"
:data="loadData"
showPagination="auto"
:pagination="{ showTotal: (total) => `共 ${total} 项` }"
:scroll="{ x: 2400 }"
>
</s-table>
因为加了bordered和fixed就会出现一个空列表,但是边框有又不可以去掉。但是可以给他们加上一个固定的宽度。就可以解决了
const columns = [
{
title: '序号',
fixed: 'left',
width: 70,
align: 'center',
scopedSlots: { customRender: 'serial' }
},
{
title: '行政区划',
fixed: 'left',
width: 100,
dataIndex: 'cityName'
}
]