123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- @extends('admin.layout')
- @section('content')
- <div class="wrapper wrapper-content animated fadeInRight">
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>用户管理</h5>
- <div class="ibox-tools">
- <a class="collapse-link"> <i class="fa fa-chevron-up"></i>
- </a>
- </div>
- </div>
- <div class="ibox-content">
- <div class="row">
- <form method="GET" action="" accept-charset="UTF-8">
- <div class="col-sm-8">
- <div class="form-group col-sm-5" >
- <label class="radio-inline">
- <input type="radio" name="is_boss" value="-1"
- @if(empty(Request::get('is_boss')) || Request::get('is_boss') == '-1')checked="checked" @endif/>全部
- </label>
- <label class="radio-inline">
- <input type="radio" name="is_boss" value="0"
- @if(!empty(Request::get('is_boss')) && Request::get('is_boss') == '0')checked="checked" @endif/>普通用户
- </label>
- <label class="radio-inline">
- <input type="radio" name="is_boss" value="1"
- @if(!empty(Request::get('is_boss')) && Request::get('is_boss') == '1')checked="checked" @endif/>经销商
- </label>
- </div>
- <div class="input-group col-sm-4">
- <input type="text" value="{{Request::get('keyword')}}" placeholder="请输入昵称/电话"
- name="keyword" class="input-sm form-control">
- <span class="input-group-btn">
- <button type="submit" class="btn btn-sm btn-primary">搜索</button>
- </span>
- </div>
- </div>
- </form>
- </div>
- <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
- <thead>
- <tr>
- <th class="sorting" data-sort="id">ID</th>
- <th class="sorting" data-sort="username"> 微信昵称 </th>
- <th class="sorting" data-sort="avatar"> 用户头像</th>
- <th class="sorting" data-sort="phone"> 电话</th>
- <th class="sorting" data-sort="is_dealer"> 画册角色</th>
- <th class="sorting" data-sort="created_at"> 加入时间</th>
- <th width="22%">相关操作</th>
- </tr>
- </thead>
- <tbody>
- @if(isset($list))
- @foreach($list as $key => $item)
- <tr>
- <td>{{ $item->id }}</td>
- <td>{{ $item->username }}</td>
- <td><img src="{{ $item->avatar }}" width="50px"/></td>
- <td>{{ $item->phone }}</td>
- @if($item['is_dealer'] == 1)
- <td>画册经销商</td>
- @else
- <td>普通用户</td>
- @endif
- <td>{{ $item->created_at }}</td>
- <td>
- @if(role('Album/User/update'))
- @if($item->is_dealer != 1)
- <button onclick="window.location.href='{{ U('Album/User/update',['id'=>$item->id]) }}'"
- class="btn btn-warning">设为经销商
- </button>
- @endif
- @endif
- </td>
- </tr>
- @endforeach
- @endif
- </tbody>
- </table>
- <div class="row">
- <div class="col-sm-6">
- <div class="dataTables_info" id="DataTables_Table_0_info"
- role="alert" aria-live="polite" aria-relevant="all">每页{{ $list->count() }}
- 条,共{{ $list->lastPage() }}页,总{{ $list->total() }}条。
- </div>
- </div>
- <div class="col-sm-6">
- <div class="dataTables_paginate paging_simple_numbers" id="DataTables_Table_0_paginate">
- {!! $list->setPath('')->appends(Request::all())->render() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
|