123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- @extends('admin.layouts')
- @section('css')
- <link href="/assets/global/vendor/bootstrap-table/bootstrap-table.min.css" rel="stylesheet">
- @endsection
- @section('content')
- <div class="page-content container-fluid">
- <div class="panel">
- <div class="panel-heading">
- <h2 class="panel-title">触发记录</h2>
- @can('admin.rule.clear')
- <div class="panel-actions">
- <a href="javascript:clearLog();" class="btn btn-outline-primary">
- <i class="icon wb-rubber" aria-hidden="true"></i>清空记录
- </a>
- </div>
- @endcan
- </div>
- <div class="panel-body">
- <div class="form-row">
- <div class="form-group col-xxl-1 col-lg-2 col-md-1 col-sm-4">
- <input type="number" class="form-control" name="uid" value="{{Request::input('uid')}}" id="uid" placeholder="用户ID"/>
- </div>
- <div class="form-group col-xxl-2 col-lg-3 col-md-3 col-sm-4">
- <input type="text" class="form-control" id="email" name="email"
- value="{{Request::input('email')}}" placeholder="用户名"/>
- </div>
- <div class="form-group col-xxl-1 col-lg-3 col-md-3 col-4">
- <select class="form-control" id="node_id" name="node_id" onChange="Search()">
- <option value="" @if(Request::input('node_id') == '') selected @endif>节点</option>
- @foreach($nodes as $node)
- <option value="{{$node->id}}" @if(Request::input('node_id') == $node->id) selected @endif>{{$node->id . ' - ' . $node->name}}</option>
- @endforeach
- </select>
- </div>
- <div class="form-group col-xxl-1 col-lg-3 col-md-3 col-4">
- <select class="form-control" id="rule_id" name="rule_id" onChange="Search()">
- <option value="" @if(Request::input('rule_id') == '') selected @endif>规则</option>
- @foreach($rules as $rule)
- <option value="{{$rule->id}}" @if(Request::input('rule_id') == $rule->id) selected @endif>{{$rule->name}}</option>
- @endforeach
- </select>
- </div>
- <div class="form-group col-xxl-1 col-lg-3 col-md-3 col-4 btn-group">
- <button class="btn btn-primary" onclick="Search()">搜 索</button>
- <a href="{{route('admin.rule.log')}}" class="btn btn-danger">重 置</a>
- </div>
- </div>
- <table class="text-md-center" data-toggle="table" data-mobile-responsive="true">
- <thead class="thead-default">
- <tr>
- <th> #</th>
- <th> 用户ID</th>
- <th> 用户名</th>
- <th> 节点</th>
- <th> 触发规则</th>
- <th> 触发原因</th>
- <th> 触发时间</th>
- </tr>
- </thead>
- <tbody>
- @foreach($ruleLogs as $ruleLog)
- <tr>
- <td> {{$ruleLog->id}} </td>
- <td> {{$ruleLog->user->id ?? '【账号已删除】'}} </td>
- <td> {{$ruleLog->user->username ?? '【账号已删除】'}} </td>
- <td> {{empty($ruleLog->node) ? '【节点已删除】' : '【节点ID:' . $ruleLog->node_id . '】' . $ruleLog->node->name}} </td>
- <td> {{$ruleLog->rule_id ? '⛔ ' . ($ruleLog->rule->name ?? '【规则已删除】') : '✅ 访问非规则允许内容'}} </td>
- <td> {{$ruleLog->reason}} </td>
- <td> {{$ruleLog->created_at}} </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- <div class="panel-footer">
- <div class="row">
- <div class="col-sm-4">
- 共 <code>{{$ruleLogs->total()}}</code> 条记录
- </div>
- <div class="col-sm-8">
- <nav class="Page navigation float-right">
- {{$ruleLogs->links()}}
- </nav>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
- @section('javascript')
- <script src="/assets/global/vendor/bootstrap-table/bootstrap-table.min.js"></script>
- <script src="/assets/global/vendor/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js"></script>
- <script>
- // 搜索
- function Search() {
- window.location.href = '{{route('admin.rule.log')}}?uid=' + $('#uid').val() + '&email=' + $('#email').val() +
- '&node_id=' + $('#node_id option:selected').val() + '&rule_id=' + $('#rule_id option:selected').val();
- }
- @can('admin.rule.clear')
- // 清除所有记录
- function clearLog() {
- swal.fire({
- title: '警告',
- text: '确定清空所有记录吗?',
- icon: 'warning',
- showCancelButton: true,
- cancelButtonText: '{{trans('home.ticket_close')}}',
- confirmButtonText: '{{trans('home.ticket_confirm')}}',
- }).then((result) => {
- if (result.value) {
- $.post("{{route('admin.rule.clear')}}", {_token: '{{csrf_token()}}'}, function(ret) {
- if (ret.status === 'success') {
- swal.fire({title: ret.message, icon: 'success', timer: 1000, showConfirmButton: false}).then(() => window.location.reload());
- } else {
- swal.fire({title: ret.message, icon: 'error'});
- }
- });
- }
- });
- }
- @endcan
- </script>
- @endsection
|