| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- @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-wrench"></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>
- <p class="card-description">
- <button type="button" class="btn btn-sm btn-gradient-success btn-icon-text"
- onclick="add()">
- <i class="mdi mdi-plus btn-icon-prepend"></i>
- {{ __('auto.配置添加') }}
- </button>
- </p>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>{{ __('auto.菜单名称') }}</th>
- <th>{{ __('auto.额度配置') }}</th>
- <th>{{ __('auto.下级每次生效增长额度') }}</th>
- <th>{{ __('auto.下级每次生效对局要求') }}</th>
- <th>{{ __('auto.下下级每次生效增长额度') }}</th>
- <th>{{ __('auto.下下级每次生效对局要求') }}</th>
- <th>{{ __('auto.操作') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $val)
- <tr>
- <td>{{ $val->name }}</td>
- <td>{{ $val->quota_min }} - {{$val->quota_max}}</td>
- <td>{{$val->level_quota_min}} - {{$val->level_quota_max}}</td>
- <td>
- {{$val->level_quota_number}}
- </td>
- <td>{{ $val->two_level_quota_min }}-{{$val->two_level_quota_max}}</td>
- <td>
- {{$val->two_level_quota_number}}
- </td>
- <td>
- <button type="button" class="btn btn-sm btn-gradient-dark btn-icon-text"
- onclick="update({{ $val->id }})">
- {{ __('auto.修改') }}
- <i class="mdi mdi-file-check btn-icon-append"></i>
- </button>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <div class="box-footer clearfix" id="pages">
- {{ __('auto.总共') }} <b>{{ $list->appends([
- ])->total() }}</b>
- {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
- {!! $list->links() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- function add() {
- layer.open({
- type: 2,
- title: '{{ __('auto.添加配置') }}',
- shadeClose: true,
- shade: 0.8,
- area: ['60%', '80%'],
- content: '/admin/extension/gamecount_config_add'
- });
- }
- function update(id) {
- var page = layer.open({
- type: 2,
- title: '{{ __('auto.修改配置') }}',
- shadeClose: true,
- shade: 0.8,
- area: ['70%', '90%'],
- content: '/admin/extension/gamecount_config_update/' + id
- });
- }
- </script>
- @endsection
|