| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- @extends('base.base')
- @section('base')
- <!-- 内容区域 -->
- <style type="text/css">
- .table th{
- padding: 0.8375rem;
- vertical-align: top;
- border-top: 1px solid #ebedf2;
- }
- </style>
- <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='/admin/gold/fishlist'>
- <span style="padding-left: 5px" >{{ __('auto.场馆:') }}</span >
- <select class="form-control" name="sort" value="{{$sort}}" style="color: black">
- <option value="">{{ __('auto.全部') }}</option>
- @foreach($sort_name as $k=>$v)
- <option value="{{$k}}" @if($k==$sort) selected @endif>{{$v}}</option>
- @endforeach
- </select>
- <span style="padding-left: 5px">{{ __('auto.鱼池:') }}</span >
- <select class="form-control" name="type" value="{{$type}}" style="color: black">
- <option value="">{{ __('auto.全部') }}</option>
- @foreach($type_name as $k=>$v)
- <option value="{{$v}}" @if($v===$type) selected @endif>{{$v}}{{ __('auto.号鱼池') }}</option>
- @endforeach
- </select>
- <spen style="padding-left: 10px" >{{ __('auto.选择时间:') }}</spen>
- <input type="date" step="01" name="start_time" class="form-control" value="{{$start_time}}" />
- <input type="date" step="01" name="end_time" class="form-control" value="{{$end_time}}" />
- <input type="submit" class="btn btn-sm btn-gradient-dark btn-icon-text" value="{{ __('auto.搜索') }}"/>
- <a href="/admin/gold/fishlist" class="btn btn-sm btn-gradient-warning btn-icon-text">{{ __('auto.清空') }}</a>
- <a href="/admin/gold/fishlist?excel=1&start_time={{$start_time}}&end_time={{$end_time}}&sort={{$sort}}&type={{$type}}" class="btn btn-sm btn-gradient-light btn-icon-text">{{ __('auto.导出') }}</a>
- </form>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th width="6%">{{ __('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)
- <tr>
- <td>{{ $v->RecordDate }}</td>
- <td>{{ $v->GoldStock }}</td>
- <td>{{ $v->Revenue }}</td>
- <td>{{ $v->GoldTurnover }}</td>
- <td>{{ $v->GoldOut }}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <div class="box-footer clearfix">
- {{ __('auto.总共') }} <b>{{ $list->appends(['start_time'=>$start_time,'end_time'=>$end_time,'sort'=>$sort,'type'=>$type])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
- {!! $list->links() !!}
- </div>
- </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
|