123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- @extends('admin.layouts')
- @section('css')
- <link href="/assets/global/vendor/bootstrap-table/bootstrap-table.min.css" type="text/css" rel="stylesheet">
- @endsection
- @section('content')
- <div class="page-content container-fluid">
- <div class="panel">
- <div class="panel-heading">
- <h3 class="panel-title">在线IP监控
- <small>2分钟内的实时数据</small>
- </h3>
- </div>
- <div class="panel-body">
- <div class="form-row">
- <div class="form-group col-lg-2 col-sm-2">
- <input type="number" class="form-control" name="id" id="id" value="{{Request::get('id')}}"
- placeholder="ID"/>
- </div>
- <div class="form-group col-lg-2 col-sm-5">
- <input type="text" class="form-control" name="email" id="email"
- value="{{Request::get('email')}}" placeholder="用户名"/>
- </div>
- <div class="form-group col-lg-2 col-sm-5">
- <input type="text" class="form-control" name="ip" id="ip" value="{{Request::get('ip')}}"
- placeholder="IP"/>
- </div>
- <div class="form-group col-lg-2 col-sm-3">
- <input type="number" class="form-control" name="port" id="port" value="{{Request::get('port')}}"
- placeholder="端口"/>
- </div>
- <div class="form-group col-lg-2 col-sm-5">
- <select name="nodeId" id="nodeId" class="form-control" onChange="Search()">
- <option value="" @if(Request::get('nodeId') == '') selected @endif hidden>选择节点</option>
- @foreach($nodeList as $node)
- <option value="{{$node->id}}"
- @if(Request::get('nodeId') == $node->id) selected @endif>{{$node->name}}</option>
- @endforeach
- </select>
- </div>
- <div class="form-group col-lg-2 col-sm-4 btn-group">
- <button class="btn btn-primary" onclick="Search()">搜 索</button>
- <a href="/admin/onlineIPMonitor" 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> 类型</th>
- <th> 节点</th>
- <th> 用户</th>
- <th> IP</th>
- <th> 归属地</th>
- <th> 时间</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $vo)
- <tr>
- <td>{{$vo->id}}</td>
- <td>{{$vo->type}}</td>
- <td>{{$vo->node ? $vo->node->name : '【节点已删除】'}}</td>
- <td>{{$vo->user ? $vo->user->email : '【用户已删除】'}}</td>
- <td>
- @if (strpos($vo->ip, ',') == true)
- @foreach (explode(',', $vo->ip) as $ip)
- <a href="https://www.ipip.net/ip/{{$ip}}.html" target="_blank">{{$ip}}</a>
- @endforeach
- @else
- <a href="https://www.ipip.net/ip/{{$vo->ip}}.html" target="_blank">{{$vo->ip}}</a>
- @endif
- </td>
- <td>{{strpos($vo->ip, ',') == true? '':$vo->ipInfo}}</td>
- <td>{{date('Y-m-d H:i:s',$vo->created_at)}}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- <div class="panel-footer">
- <div class="row">
- <div class="col-sm-4">
- 共 <code>{{$list->total()}}</code> 个账号
- </div>
- <div class="col-sm-8">
- <nav class="Page navigation float-right">
- {{$list->links()}}
- </nav>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
- @section('script')
- <script src="/assets/global/vendor/bootstrap-table/bootstrap-table.min.js" type="text/javascript"></script>
- <script src="/assets/global/vendor/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js"
- type="text/javascript"></script>
- <script src="/assets/custom/Plugin/clipboardjs/clipboard.min.js" type="text/javascript"></script>
- <script type="text/javascript">
- //回车检测
- $(document).on("keypress", "input", function (e) {
- if (e.which === 13) {
- Search();
- return false;
- }
- });
- // 搜索
- function Search() {
- window.location.href = '/admin/onlineIPMonitor?id=' + $("#id").val() + '&ip=' + $("#ip").val() + '&email=' + $("#email").val() + '&port=' + $("#port").val() + '&nodeId=' + $("#nodeId option:selected").val();
- }
- </script>
- @endsection
|