layui 数据表格:纵向滚动条
function renderTable(_data) {
table.render({
elem: '#searchList',
data: _data,
cols: [[
{type: 'checkbox', fixed: 'left'},
{field: 'chapter_num', width: 100, align: 'center', title: '章节号'},
{field: 'p', minWidth: 200, align: 'center', title: '内容'},
{title: '操作', width: 120, align: 'center', fixed: 'right', toolbar: '#tableTpl'}
]],
page: false,
limit: Number.MAX_VALUE, // 重点是这个
text: {
none: '暂无相关数据'
}
});
}
本作品采用《CC 协议》,转载必须注明作者和本文链接