| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- @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.角色') }}ID</th>
- <th>{{ __('auto.角色名称') }}</th>
- <th>{{ __('auto.角色描述') }}</th>
- <th>{{ __('auto.创建时间') }}</th>
- <th>{{ __('auto.更新时间') }}</th>
- <th>{{ __('auto.操作') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $k=>$v)
- <tr>
- <td>{{ $v->id }}</td>
- <td>{{ $v->name }}</td>
- <td>{{ $v->description }}</td>
- <td>{{ $v->created_at }}</td>
- <td>{{ $v->updated_at }}</td>
- <td>
- <button type="button" class="btn btn-sm btn-gradient-dark btn-icon-text" onclick="update({{ $v->id }})">
- {{ __('auto.修改') }}
- <i class="mdi mdi-file-check btn-icon-append"></i>
- </button>
- <button @if($v->id == 1) disabled @endif type="button" class="btn btn-sm btn-gradient-danger btn-icon-text" onclick="del({{ $v->id }})">
- <i class="mdi mdi-delete btn-icon-prepend"></i>
- {{ __('auto.删除') }}
- </button>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- function add(){
- var page = layer.open({
- type: 2,
- title: '{{ __('auto.添加角色') }}',
- shadeClose: true,
- shade: 0.8,
- area: ['70%', '90%'],
- content: '/admin/role/add'
- });
- }
- function update(id){
- var page = layer.open({
- type: 2,
- title: '{{ __('auto.修改角色') }}',
- shadeClose: true,
- shade: 0.8,
- area: ['70%', '90%'],
- content: '/admin/role/update/'+id
- });
- }
- function del(id){
- myConfirm("{{ __('auto.删除操作不可逆,是否继续') }}?",function(){
- myRequest("/admin/role/del/"+id,"post",{},function(res){
- layer.msg(res.msg)
- setTimeout(function(){
- window.location.reload();
- },1500)
- });
- });
- }
- $('.menu-switch').click(function(){
- id = $(this).attr('id');
- state = $(this).attr('state');
- console.log(id)
- console.log(state)
- if(state == "on"){
- $('.pid-'+id).hide();
- $(this).attr("state","off")
- $(this).removeClass('mdi-menu-down').addClass('mdi-menu-right');
- }else{
- $('.pid-'+id).show();
- $(this).attr("state","on")
- $(this).removeClass('mdi-menu-right').addClass('mdi-menu-down');
- }
- })
- </script>
- @endsection
|