| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- @extends('base.base')
- @section('base')
- <!-- 内容区域 -->
- <div class="main-panel">
- <div class="content-wrapper">
- <div class="page-header">
- <h3 class="page-title">
- <span class="page-title-icon bg-gradient-primary text-white mr-2">
- <i class="mdi mdi-settings"></i>
- </span>
- {{ __('auto.游戏概括') }}
- </h3>
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="#">{{ __('auto.实时数据') }}</a></li>
- <li class="breadcrumb-item active" aria-current="page">{{ __('auto.游戏概括') }}</li>
- </ol>
- </nav>
- </div>
- <div class="row">
- <div class="col-lg-12 grid-margin stretch-card">
- <div class="card">
- <div class="card-body">
- <table class="table table-bordered">
- <tr>
- <th width="100%"><h4 class="card-title"><a href="/admin/withdrawal/waitWithdrawal"> {{ trans('cs.cs.withdraw_title') }}</a> </h4>
- </th>
- </tr>
- <tr>
- <th width="100%"> {{trans('cs.cs.apply',['p'=>$applyUserCount->userCount ?? 0,'num'=>$applyUserCount->count ?? 0])}}
- {{trans('cs.cs.total')}}{{$applyUserCount->WithDraw ?? 0}}
- </th>
- </tr>
- <tr>
- <th width="100%"><h4 class="card-title"><a href="/admin/complaint/opinion">
- {{trans('cs.cs.cs_title')}}</a></h4>
- </th>
- </tr>
- <tr>
- <th width="100%"> {{trans('cs.cs.msgcount',['count'=>$message->count])}} {{trans('cs.cs.replyed',['count'=>$message->replycount])}} {{trans('cs.cs.read',['count'=>$message->readcount])}}
- </th>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- $(function(){
- cutStr(50);
- });
- // function update(id){
- // myConfirm("是否继续?",function(){
- // var nullity= document.getElementById('nullity').value;
- // myRequest("/admin/user/freeze/"+id,"post",{nullity:nullity},function(res){
- // layer.msg(res.msg)
- // setTimeout(function(){
- // window.location.reload();
- // },1500)
- // });
- // });
- // }
- setInterval(function (){
- window.location.reload();
- },300000)
- </script>
- @endsection
|