93 lines
2.5 KiB
Plaintext
93 lines
2.5 KiB
Plaintext
{extend name="public/base"/}
|
|
{block name="body"}
|
|
<div class="main-box no-header clearfix">
|
|
<header class="main-box-header clearfix">
|
|
<div class="pull-left">
|
|
<h2>{$meta_title}</h2>
|
|
</div>
|
|
<div class="pull-right">
|
|
<a href="{:url('add')}" class="btn btn-primary pull-right"> <i class="fa fa-plus-circle fa-lg"></i> 新增用户</a>
|
|
</div>
|
|
</header>
|
|
<div class="main-box-body clearfix">
|
|
<div class="table-responsive">
|
|
<table class="table user-list table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<span>用户</span>
|
|
</th>
|
|
<th>
|
|
<span>Email</span>
|
|
</th>
|
|
<th>
|
|
<span>手机号码</span>
|
|
</th>
|
|
<th>
|
|
<span>授权分组</span>
|
|
</th>
|
|
<th>
|
|
<span>创建时间</span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span>状态</span>
|
|
</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{volist name="list" id="item"}
|
|
<tr>
|
|
<td>
|
|
<img src="{:avatar($item['uid'])}" alt=""/>
|
|
<a href="#" class="user-link">{$item['nickname']}</a>
|
|
<span class="user-subhead">{$item['username']}</span>
|
|
</td>
|
|
<td>
|
|
<span >{$item['email']}</span>
|
|
</td>
|
|
<td>
|
|
<span >{$item['mobile']}</span>
|
|
</td>
|
|
<td>{$item['group_list']|implode=',',###}</td>
|
|
<td>{$item['reg_time']|date='Y-m-d',###}</td>
|
|
<td class="text-center">
|
|
{if condition="$item['status']"}
|
|
<span class="label label-primary">启用</span>
|
|
{else/}
|
|
<span class="label label-danger">禁用</span>
|
|
{/if}
|
|
</td>
|
|
<td>
|
|
{if $item['group']==4}
|
|
<a href="{:url('User/percentage',array('id'=>$item['uid']))}" class="table-link" title="">
|
|
抽成设置
|
|
</a>
|
|
<a href="{:url('User/gathering',array('id'=>$item['uid']))}" class="table-link" title="">
|
|
收款信息
|
|
</a>
|
|
<a href="{:url('User/level',array('id'=>$item['uid']))}" class="table-link" title="">
|
|
等级划分
|
|
</a>
|
|
{/if}
|
|
<a href="{:url('User/edit',array('id'=>$item['uid']))}" class="table-link" title="">
|
|
编辑
|
|
</a>
|
|
<!----------
|
|
<a href="{:url('User/auth',array('id'=>$item['uid']))}" class="table-link">
|
|
授权
|
|
</a>
|
|
------->
|
|
<a href="{:url('User/del',array('id'=>$item['uid']))}" class="table-link confirm ajax-get">
|
|
删除
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{/volist}
|
|
</tbody>
|
|
</table>
|
|
{$page}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block} |