| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- @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">
- <h4 class="card-title">{{ __('auto.金币数据') }}</h4>
- <form class="well form-inline margin-top-20" method="get" action='/api/mj'>
- <span style="padding-left: 5px" >{{ __('auto.渠道:') }}</span >
- <select class="form-control" name="appid" value="{{$appid}}" style="color: black">
- <option value="">{{ __('auto.请选择渠道') }}</option>
- @foreach($app as $k=>$v)
- <option value="{{$k}}" @if($k==$appid) selected @endif>{{ __('auto.云南麻将') }}{{$v}}</option>
- @endforeach
- </select>
- <spen style="padding-left: 10px" >{{ __('auto.选择时间:') }}</spen>
- <input type="date" step="01" name="start_date" class="form-control" value="{{$start_date}}" />
- <input type="date" step="01" name="end_date" class="form-control" value="{{$end_date}}" />
- <input type="submit" class="btn btn-sm btn-gradient-dark btn-icon-text" value="{{ __('auto.搜索') }}"/>
- <a href="/api/mj" class="btn btn-sm btn-gradient-warning btn-icon-text">{{ __('auto.清空') }}</a>
- </form>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th width="6%">{{ __('auto.时间') }}</th>
- <th width="4%">{{ __('auto.子游戏名称') }}</th>
- <th width="6%">{{ __('auto.参游人数') }}</th>
- <th width="6%">{{ __('auto.游戏局数') }}</th>
- <th width="6%">{{ __('auto.开桌数') }}</th>
- <th width="6%">{{ __('auto.钻石消耗') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $k=>$v)
- @foreach($v as $k1=>$v1)
- <tr>
- <td>{{ $v1['date'] }}</td>
- <td>{{ $k1 }}</td>
- <td>{{ $v1['count'] }}</td>
- <td>{{ $v1['js'] }}</td>
- <td>{{ $v1['zs'] }}</td>
- <td>{{ $v1['xh'] }}</td>
- </tr>
- @endforeach
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- $(function(){
- cutStr(50);
- });
- function update(id){
- myConfirm("{{ __('auto.处理操作不可逆,是否继续') }}?",function(){
- myRequest("/admin/accusation/edit/"+id,"post",{},function(res){
- layer.msg(res.msg)
- setTimeout(function(){
- window.location.reload();
- },1500)
- });
- });
- }
- function del(id){
- myConfirm("{{ __('auto.删除操作不可逆,是否继续') }}?",function(){
- myRequest("/admin/accusation/del/"+id,"post",{},function(res){
- layer.msg(res.msg)
- setTimeout(function(){
- window.location.reload();
- },1500)
- });
- });
- }
-
- </script>
- @endsection
|