CheckinManagement.blade.php 3.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @extends('admin.master')
  2. @section('content')
  3. <div class="row">
  4. <div class="col-lg-12">
  5. <div class="contentpanel">
  6. <form id="listForm" method="post">
  7. <!-- 功能按鈕(新增/批量處理等等) -->
  8. <div class="row" style="margin-bottom: 5px;">
  9. <div class="col-lg-12">
  10. <ol class="headermenu">
  11. <li>
  12. <button class="btn btn-darkblue btn-xs" id="btnNew"><strong>新增</strong></button>
  13. </li>
  14. </ol>
  15. </div>
  16. </div>
  17. <!-- 搜尋段 -->
  18. <div class="panel panel-default">
  19. <div class="panel-heading" data-toggle="collapse" data-target="#search_content">
  20. <h3 class="panel-title">簽到贈點管理</h3>
  21. </div>
  22. <div id="search_content" class="collapse in">
  23. <div class="panel-body">
  24. </div>
  25. </div>
  26. </div>
  27. <hr class="search-hr"/>
  28. <!-- 列表段 -->
  29. <div class="row">
  30. <div class="col-lg-12">
  31. 相同一筆設定,若有分上下兩部分:<br>
  32. 上排代表目前修改中的最新設定,在審核通過前都不會生效。<br>
  33. 下排代表目前經審核通過的線上設定。
  34. </div>
  35. <div class="col-lg-12">
  36. <table id="GridView1" class="table table-striped table-bordered" cellspacing="0">
  37. <thead>
  38. <tr>
  39. <th>ID</th>
  40. <th>第幾天</th>
  41. <th>吉點</th>
  42. <th>建立時間</th>
  43. <th>修改時間</th>
  44. <th>修改人</th>
  45. </tr>
  46. </thead>
  47. </table>
  48. </div>
  49. </div>
  50. </form>
  51. <!-- row -->
  52. </div>
  53. </div>
  54. </div>
  55. @endsection
  56. @section('extjs')
  57. <script>
  58. $(document).ready(function () {
  59. var table = $('#GridView1').dataTable({
  60. "scrollX": true,
  61. "processing": true,
  62. "serverSide": true,
  63. "ajax": "checkinManagement/grid",
  64. "paging": true,
  65. "ordering": true,
  66. "info": true,
  67. "order": [[1, "desc"]],
  68. "stateSave": true,
  69. "pagingType": "full",
  70. "bFilter": true,
  71. "aoColumnDefs": [{
  72. 'bSortable': false,
  73. 'aTargets': [0] //不想參加排序的欄位,可指定多個,逗號分隔
  74. }]
  75. });
  76. // 從網址參觸發搜尋
  77. custom_search();
  78. $('#GridView1_filter').hide();
  79. });
  80. //客製化搜尋欄位
  81. function custom_search() {
  82. $('#GridView1').DataTable()
  83. ;
  84. $('#GridView1').dataTable().fnDraw(true);
  85. }
  86. // 新增
  87. $("#btnNew").click(function () {
  88. location.href = 'checkinManagement/create';
  89. return false;
  90. });
  91. </script>
  92. @endsection