64 lines
2.2 KiB
PHTML
64 lines
2.2 KiB
PHTML
<?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('元数据评审');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->headScript()->appendFile('/js/jquery-1.6.4.min.js');
|
|
?>
|
|
<div id="leftPanel">
|
|
<?= $this->partial('review/left.phtml'); ?>
|
|
</div>
|
|
|
|
<div id="rightPanel">
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
<div id="message">
|
|
<?php if ($this->msg) : ?>
|
|
<p><?php echo $this->msg; ?></p>
|
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
|
<p><?php echo $msg; ?></p>
|
|
<?php endforeach;endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="ctrlplan">
|
|
<a href="/admin/review/experts">专家列表</a>
|
|
<a href="/admin/review/experts/add/1">添加评审专家</a>
|
|
</div>
|
|
|
|
<div class="search">
|
|
<form action="" method="get">
|
|
<input type="hidden" name="search" value='1' />
|
|
<label>搜索关键字</label><input type="text" name="keyword" class="q" value="<?php echo $this->keyword; ?>" />
|
|
<input type="submit" class="btn" value="搜索" />
|
|
</form>
|
|
</div><!-- search DIV -->
|
|
|
|
<table class="stylized"><thead>
|
|
<tr>
|
|
<td width='150'>姓名</td>
|
|
<td width='350'>特长</td>
|
|
<td width='150'>操作</td>
|
|
</tr></thead>
|
|
<?php if (count($this->paginator)): ?>
|
|
<tbody id="list">
|
|
<?php foreach ($this->paginator as $item): ?>
|
|
<tr>
|
|
<td><img src="/images/user.gif" /><a href='/admin/user/show/id/<?= $item['id'];?>'><?= $item['realname']?></a></td>
|
|
<td><?php echo $item['speciality']; ?></td>
|
|
<td>
|
|
<a href='/admin/review/experts/edit/<?php echo $item['mid'];?>'>更改</a>
|
|
<a href="/admin/review/comments/ac/list/userid/<?php echo $item['mid'];?>">查看评审记录</a>
|
|
<a href='/admin/review/experts/del/<?php echo $item['mid'];?>' onclick="return confirm('是否确定删除该评审专家')">删除</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
<?php endif; ?>
|
|
</table>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
</div>
|
|
<script>$("#list tr").mouseover(function(){$(this).addClass("high")}).mouseout(function(){$(this).removeClass("high")})</script>
|