...
|
...
|
@@ -22,13 +22,10 @@ |
|
|
<th>ID</th>
|
|
|
<th>{:lang('NICENAME')}</th>
|
|
|
<th>{:lang('AVATAR')}</th>
|
|
|
<th>{:lang('EMAIL')}</th>
|
|
|
<th>手机</th>
|
|
|
<th>{:lang('REGISTRATION_TIME')}</th>
|
|
|
<th>{:lang('LAST_LOGIN_TIME')}</th>
|
|
|
<th>{:lang('LAST_LOGIN_IP')}</th>
|
|
|
<th>{:lang('STATUS')}</th>
|
|
|
<th>{:lang('ACTIONS')}</th>
|
|
|
<th>余额</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
...
|
...
|
@@ -40,26 +37,10 @@ |
|
|
<td>{$vo.id}</td>
|
|
|
<td>{$vo['user_nickname']?$vo['user_nickname']:lang('NOT_FILLED')}</td>
|
|
|
<td><img width="25" height="25" src="{:url('user/public/avatar',array('id'=>$vo['id']))}"/></td>
|
|
|
<td>{$vo.user_email}</td>
|
|
|
<td>{$vo.tel}</td>
|
|
|
<td>{:date('Y-m-d H:i:s',$vo['create_time'])}</td>
|
|
|
<td>{:date('Y-m-d H:i:s',$vo['last_login_time'])}</td>
|
|
|
<td>{$vo.last_login_ip}</td>
|
|
|
<td>{$user_statuses[$vo['user_status']]}</td>
|
|
|
<td>
|
|
|
<neq name="vo.id" value="1">
|
|
|
<empty name="vo.user_status">
|
|
|
<a href="{:url('adminIndex/cancelban',array('id'=>$vo['id']))}"
|
|
|
class="js-ajax-dialog-btn"
|
|
|
data-msg="{:lang('ACTIVATE_USER_CONFIRM_MESSAGE')}">{:lang('ACTIVATE_USER')}</a>
|
|
|
<else/>
|
|
|
<a href="{:url('adminIndex/ban',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn"
|
|
|
data-msg="{:lang('BLOCK_USER_CONFIRM_MESSAGE')}">{:lang('BLOCK_USER')}</a>
|
|
|
</empty>
|
|
|
<else/>
|
|
|
<a style="color: #ccc;">{:lang('BLOCK_USER')}</a>
|
|
|
</neq>
|
|
|
</td>
|
|
|
<td>{$vo.balance}</td>
|
|
|
</tr>
|
|
|
</foreach>
|
|
|
</tbody>
|
...
|
...
|
|