46 lines
1.3 KiB
PHTML
Executable File
46 lines
1.3 KiB
PHTML
Executable File
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/admin/">后台首页</a>');
|
|
$this->breadcrumb('<a href="/admin/user">用户管理</a>');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div id="leftPanel">
|
|
<?= $this->partial('user/left.phtml'); ?>
|
|
</div>
|
|
|
|
<div id="rightPanel">
|
|
<div class="title">管理员列表</div>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td width='150'>用户名</td>
|
|
<td width='250'>电子邮箱</td>
|
|
<td width='100'>用户类型</td>
|
|
<td width='150'>真实姓名</td>
|
|
<td width='150'>电话</td>
|
|
<td width='150'>操作</td>
|
|
</tr>
|
|
</thead>
|
|
<?php if (count($this->paginator)): ?>
|
|
<?php $autoindex=0;?>
|
|
<?php foreach ($this->paginator as $item): ?>
|
|
<?php $autoindex++;?>
|
|
<tr class="<?php if($autoindex%2 == 0) echo 'even'; else echo 'odd'; ?>">
|
|
<td><?= $item['username']?></td>
|
|
<td><?= $item['email']; ?></td>
|
|
<td><?= $item['usertype']; ?></td>
|
|
<td><?= $item['realname']; ?></td>
|
|
<td><?= $item['phone']; ?></td>
|
|
<td>
|
|
<a href='/admin/user/show/id/<?= $item['id'];?>'>查看详细</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
</div>
|