<script> layui.use(['table', 'form', 'element', 'table', 'layer', 'admin'], function () { let table = layui.table table.render({ elem: '#list' , url: '/api/chain/GetChainCheckList' , method: 'post' , size: 'sm' , limit: 20 , cellMinWidth: 80 //全局定义常规单元格的最小宽度 , where: {} , loading: true , first: true //不显示首页 , last: false //不显示尾页 , cols: [[ { field: 'status_name', title: '跟进结果', align: 'center', }, {field: 'check_content', title: '跟进内容', align: 'center'}, {field: 'create_time', title: '跟进时间', width: 150, align: 'center'}, {field: 'create_name', title: '跟进人', width: 150, align: 'center'}, ]] , id: 'list' , page: {} }); }); </script>