| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @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>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th width="10%">{{ __('auto.游戏名称') }}</th>
- <th width="10%">{{ __('auto.配置值') }}</th>
- <th width="15%">{{ __('auto.操作') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach($config as $k=>$v)
- <tr>
- <td>{{ $config_name[$k] }}</td>
- <td>{{ $v }}</td>
- <td>
- <button type="button" class="btn btn-sm btn-gradient-dark btn-icon-text" onclick="update('{{ $k }}')">
- {{ __('auto.修改') }}
- <i class="mdi mdi-file-check btn-icon-append"></i>
- </button>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- function update(key){
- var page = layer.open({
- type: 2,
- title: '{{ __('auto.配置修改') }}',
- shadeClose: true,
- shade: 0.8,
- area: ['40%', '50%'],
- content: '/admin/crash/config_update/'+key
- });
- }
- </script>
- @endsection
|