| 12345678910111213141516171819202122232425 | @extends('admin/layout')@section('content')    <body class="gray-bg">    <div class="wrapper wrapper-content animated fadeInRight">        <div class="ibox-content m-b-sm border-bottom">            <table id="table" class="table table-condensed" data-mobile-responsive="true"></table>        </div>    </div>    </body>@endsection@section('footer')    <script>        var config = {};        config.pageSize = 15;        config.url = '/admin/articles/hall-calc-history';        config.columns = [ //字段            {title: '编号', field: 'id', align: 'center'},            {title: '标题', field: 'title', align: 'center'},            {title: '结算时间', field: 'settle_at', align: 'center'},            {title: '结算金额', field: 'settle_amount', align: 'center'}        ];        tips.bootstrapTable(config);    </script>@endsection
 |