layui
table表格展示
效果

代码
前端代码
<html>
<body>
<table id="demo" lay-filter="demo"></table>
</body>
<script src="/static/js/jquery-1.8.3.min.js"></script>
<script>
layui.use('table', function () {
var table = layui.table;
//第一个实例
table.render({
elem: '#demo'
, height: 465
, url: '/sewage/manage/data' //数据接口
, page: true //开启分页
, cols: [[ //表头
{
type: 'radio', title: '', width: 50, align: 'center', fixed: 'left'}
, {
field: 'facid', title: 'id', width: 80, align: 'center', sort: true}
, {
field: 'facname', title: '名称', width: 100, align: 'center'}
, {
field: 'time', title: '数据时间', width: 150, align: 'center', sort: true}
, {
field: 'recplan', title: '收款计划', width: 150, align: 'center'}
, {
field: 'r

最低0.47元/天 解锁文章
1233

被折叠的 条评论
为什么被折叠?



