hall_calc_history.blade.php 872 B

12345678910111213141516171819202122232425
  1. @extends('admin/layout')
  2. @section('content')
  3. <body class="gray-bg">
  4. <div class="wrapper wrapper-content animated fadeInRight">
  5. <div class="ibox-content m-b-sm border-bottom">
  6. <table id="table" class="table table-condensed" data-mobile-responsive="true"></table>
  7. </div>
  8. </div>
  9. </body>
  10. @endsection
  11. @section('footer')
  12. <script>
  13. var config = {};
  14. config.pageSize = 15;
  15. config.url = '/admin/articles/hall-calc-history';
  16. config.columns = [ //字段
  17. {title: '编号', field: 'id', align: 'center'},
  18. {title: '标题', field: 'title', align: 'center'},
  19. {title: '结算时间', field: 'settle_at', align: 'center'},
  20. {title: '结算金额', field: 'settle_amount', align: 'center'}
  21. ];
  22. tips.bootstrapTable(config);
  23. </script>
  24. @endsection