|
|
@@ -0,0 +1,99 @@
|
|
|
+@extends('admin.layouts')
|
|
|
+
|
|
|
+@section('css')
|
|
|
+ <link href="/assets/global/plugins/datatables/datatables.min.css" rel="stylesheet" type="text/css" />
|
|
|
+ <link href="/assets/global/plugins/datatables/plugins/bootstrap/datatables.bootstrap.css" rel="stylesheet" type="text/css" />
|
|
|
+@endsection
|
|
|
+@section('title', '控制面板')
|
|
|
+@section('content')
|
|
|
+ <!-- BEGIN CONTENT BODY -->
|
|
|
+ <div class="page-content" style="padding-top:0;">
|
|
|
+ <!-- BEGIN PAGE BASE CONTENT -->
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-md-12">
|
|
|
+ <!-- BEGIN EXAMPLE TABLE PORTLET-->
|
|
|
+ <div class="portlet light bordered">
|
|
|
+ <div class="portlet-title">
|
|
|
+ <div class="caption font-dark">
|
|
|
+ <span class="caption-subject bold uppercase"> 流量变动记录 </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="portlet-body">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-md-2 col-sm-2">
|
|
|
+ <input type="text" class="col-md-4 form-control input-sm" name="username" value="{{Request::get('username')}}" id="username" placeholder="用户名" onkeydown="if(event.keyCode==13){do_search();}">
|
|
|
+ </div>
|
|
|
+ <div class="col-md-2 col-sm-2">
|
|
|
+ <button type="button" class="btn btn-sm blue" onclick="do_search();">查询</button>
|
|
|
+ <button type="button" class="btn btn-sm grey" onclick="do_reset();">重置</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="table-scrollable table-scrollable-borderless">
|
|
|
+ <table class="table table-hover table-light">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th> # </th>
|
|
|
+ <th> 用户名 </th>
|
|
|
+ <th> 订单ID </th>
|
|
|
+ <th> 变动前流量 </th>
|
|
|
+ <th> 变动后流量 </th>
|
|
|
+ <th> 描述 </th>
|
|
|
+ <th> 发生时间 </th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ @if($list->isEmpty())
|
|
|
+ <tr>
|
|
|
+ <td colspan="8" style="text-align: center;">暂无数据</td>
|
|
|
+ </tr>
|
|
|
+ @else
|
|
|
+ @foreach($list as $vo)
|
|
|
+ <tr class="odd gradeX">
|
|
|
+ <td> {{$vo->id}} </td>
|
|
|
+ <td> {!! empty($vo->user) ? '【账号已删除】' : '<a href="/admin/userTrafficLogList?username=' . $vo->user->username . '">' . $vo->user->username . '</a>' !!} </td>
|
|
|
+ <td> {{$vo->order_id}} </td>
|
|
|
+ <td> {{$vo->before}} </td>
|
|
|
+ <td> {{$vo->amount}} </td>
|
|
|
+ <td> {{$vo->after}} </td>
|
|
|
+ <td> {{$vo->desc}} </td>
|
|
|
+ <td> {{$vo->created_at}} </td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ @endif
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-md-4 col-sm-4">
|
|
|
+ <div class="dataTables_info" role="status" aria-live="polite">共 {{$list->total()}} 条记录</div>
|
|
|
+ </div>
|
|
|
+ <div class="col-md-8 col-sm-8">
|
|
|
+ <div class="dataTables_paginate paging_bootstrap_full_number pull-right">
|
|
|
+ {{ $list->links() }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- END EXAMPLE TABLE PORTLET-->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- END PAGE BASE CONTENT -->
|
|
|
+ </div>
|
|
|
+ <!-- END CONTENT BODY -->
|
|
|
+@endsection
|
|
|
+@section('script')
|
|
|
+ <script type="text/javascript">
|
|
|
+ // 搜索
|
|
|
+ function do_search() {
|
|
|
+ var username = $("#username").val();
|
|
|
+
|
|
|
+ window.location.href = '{{url('admin/userTrafficLogList')}}' + '?username=' + username;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 重置
|
|
|
+ function do_reset() {
|
|
|
+ window.location.href = '{{url('admin/userTrafficLogList')}}';
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+@endsection
|