| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- @extends('layouts.base')
- @section('title', INTEGRAL_NAME . '管理')
- @section('content')
- <link href="{{static_url('yunshop/balance/balance.css')}}" media="all" rel="stylesheet" type="text/css"/>
- <div class="content">
- <div id="member-blade" class="rightlist">
- <div class="panel panel-info">
- <div class="panel-heading">{{ INTEGRAL_NAME }} 管理</div>
- <div class="panel-body">
- <form action="" method="get" class="form-horizontal" role="form" id="form1">
- <input type="hidden" name="c" value="site">
- <input type="hidden" name="a" value="entry">
- <input type="hidden" name="m" value="yun_shop">
- <input type="hidden" name="do" value="sign" id="form_do">
- <input type="hidden" name="route" value="plugin.integral.Backend.Modules.Member.Controllers.records" id="route">
- <div class="form-group col-sm-11 col-lg-11 col-xs-12">
- <div class="">
- <div class="input-group">
- <input class="form-control" name="search[uid]" type="text" value="{{ $search[uid] }}" placeholder="会员ID">
- <input class="form-control" name="search[realname]" type="text" value="{{ $search['realname'] }}" placeholder="会员昵称/姓名/手机">
- <div class="form-input" style="width:60%;">
- <p class="input-group-addon price">{{ INTEGRAL_NAME }}区间</p>
- <input class="form-control price" name="search[min_integral]" type="text" value="{{ $search['min_integral'] }}" placeholder="最小">
- <p class="line">—</p>
- <input class="form-control price" name="search[max_integral]" type="text" value="{{ $search['max_integral'] }}" placeholder="最大">
- </div>
- </div>
- </div>
- </div>
- <div class="form-group col-sm-1 col-lg-1 col-xs-12">
- <div class="">
- <input type="submit" class="btn btn-block btn-success" value="搜索">
- </div>
- </div>
- </form>
- </div>
- </div>
- <div class="clearfix">
- <div class="panel panel-default">
- <div class="panel-heading">
- 持有{{ INTEGRAL_NAME }}总人数 {{ $count['count']}}
-     
- 现有{{ INTEGRAL_NAME }}总数 {{ $count['total_integral']}}
- </div>
- <div class="panel-body">
- <table class="table table-hover" style="overflow:visible;">
- <thead class="navbar-inner">
- <tr>
- <th style="width:8%;text-align: center;">会员ID</th>
- <th style="width:10%;text-align: center;">粉丝</th>
- <th style="width:12%;text-align: center;">姓名/手机号</th>
- <th style="width:10%;text-align: center;">会员等级/会员分组</th>
- <th style="width:15%;text-align: center;">{{ INTEGRAL_NAME }}</th>
- <th style="width:12%;text-align: center;">操作</th>
- </tr>
- </thead>
- <tbody>
- @foreach ($pageList as $key => $list)
- <tr style="text-align: center;">
- <td>{{ $list->uid }}</td>
- <td>
- <a href="{{yzWebUrl('member.member.detail',['id'=> $list['uid']])}}">
- <img src="{{ $list->avatar }}" style="width:30px;height:30px;padding:1px;border:1px solid #ccc"><br>{{ $list->nickname }}
- </a>
- </td>
- <td>
- <p>
- {{$list['realname'] }}
- </p>
- <p>
- @if (!empty($list['mobile'])) {{ $list['mobile'] }} @endif
- </p>
- </td>
- <td>
- <p>
- @if(!empty($list->yzMember->level->level_name))
- {{ $list->yzMember->level->level_name }}
- @else
- {{$set['level_name']}}
- @endif
- </p>
- <p>
- @if(!empty($list->yzMember->group->group_name))
- {{ $list->yzMember->group->group_name }}
- @else
- 无分组
- @endif
- </p>
- </td>
- <td>
- <label class="label label-danger">
- 可用:{{ $list->integral->integral ?? "0.00" }}
- </label>
- </td>
- <td style="overflow:visible;">
- <a class="btn btn-default" href="{!! yzWebUrl('plugin.integral.Backend.Modules.Member.Controllers.recharge.index',array('member_id' => $list['uid'])) !!}" style="margin-bottom: 2px">充值</a>
- {{--<a class="btn btn-default" href="/web/index.php?c=site&a=entry&m=yun_shop&do=7944&route=plugin.integral.Backend.Modules.Member.Controllers.recharge.index&member_id={{ $list['uid'] }}" style="margin-bottom: 2px">充值</a>--}}
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- {!! $page !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
|