analysis.blade.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. @extends('admin.layouts')
  2. @section('css')
  3. <link href="/assets/global/vendor/bootstrap-table/bootstrap-table.min.css" type="text/css" rel="stylesheet">
  4. @endsection
  5. @section('content')
  6. <div class="page-content container">
  7. <div class="panel">
  8. <div class="panel-heading">
  9. <h2 class="panel-title">日志分析
  10. <small>仅适用于单机单节点</small>
  11. </h2>
  12. </div>
  13. @if (Session::has('analysisErrorMsg'))
  14. <div class="alert alert-danger" role="alert">
  15. <button class="close" data-dismiss="alert" aria-label="Close"><span
  16. aria-hidden="true">&times;</span><span class="sr-only">{{trans('home.close')}}</span>
  17. </button>
  18. {{Session::get('analysisErrorMsg')}}
  19. </div>
  20. @endif
  21. <div class="panel-body">
  22. <table class="text-md-center" data-toggle="table" data-mobile-responsive="true">
  23. <thead class="thead-default">
  24. <tr>
  25. <th>近期请求地址</th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. @if(empty($urlList))
  30. <tr>
  31. <td colspan="1">访问记录不足15000条,无法分析数据</td>
  32. </tr>
  33. @else
  34. @foreach($urlList as $url)
  35. <tr>
  36. <td> {{$url}} </td>
  37. </tr>
  38. @endforeach
  39. @endif
  40. </tbody>
  41. </table>
  42. </div>
  43. </div>
  44. </div>
  45. @endsection
  46. @section('script')
  47. <script src="/assets/global/vendor/bootstrap-table/bootstrap-table.min.js" type="text/javascript"></script>
  48. <script src="/assets/global/vendor/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js"
  49. type="text/javascript"></script>
  50. <script type="text/javascript">
  51. const TableDatatablesScroller = function () {
  52. const e = function () {
  53. const e = $("#analysis");
  54. e.dataTable({
  55. language: {
  56. aria: {
  57. sortAscending: ": activate to sort column ascending",
  58. sortDescending: ": activate to sort column descending"
  59. },
  60. emptyTable: "暂无数据",
  61. info: "第 _START_ 到 _END_ 条,共计 _TOTAL_ 条",
  62. infoEmpty: "未找到",
  63. infoFiltered: "(filtered1 from _MAX_ total entries)",
  64. lengthMenu: "_MENU_ entries",
  65. search: "搜索:",
  66. zeroRecords: "未找到"
  67. },
  68. buttons: [
  69. {extend: "print", className: "btn btn-outline-dark"},
  70. {extend: "pdf", className: "btn btn-outline-success"},
  71. {extend: "csv", className: "btn btn-outline-primary"}
  72. ],
  73. scrollY: 300,
  74. deferRender: !0,
  75. scroller: !0,
  76. stateSave: !0,
  77. order: [[0, "asc"]],
  78. lengthMenu: [[10, 15, 20, -1], [10, 15, 20, "All"]],
  79. pageLength: 20,
  80. dom: "<'row' <'col-md-12'B>><'row'<'col-md-6 col-sm-12'l><'col-md-6 col-sm-12'f>r><'table-scrollable't><'row'<'col-md-5 col-sm-12'i><'col-md-7 col-sm-12'p>>"
  81. })
  82. };
  83. return {
  84. init: function () {
  85. jQuery().dataTable && (e())
  86. }
  87. }
  88. }();
  89. jQuery(document).ready(function () {
  90. TableDatatablesScroller.init()
  91. });
  92. $('#is_rand_port').on({
  93. 'switchChange.bootstrapSwitch': function (event, state) {
  94. $.post("/admin/enableRandPort", {_token: '{{csrf_token()}}', value: state ? 1 : 0}, function (ret) {
  95. console.log(ret);
  96. });
  97. }
  98. });
  99. </script>
  100. @endsection