westdc-zf1/application/admin/views/scripts/review/commentslistbyuser.phtml

64 lines
3.0 KiB
PHTML

<?php
$this->headTitle($this->config->title->site);
$this->headTitle('后台管理');
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/admin.css');
$this->headScript()->appendFile('/js/jquery-1.6.4.min.js');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/admin">后台首页</a>');
$this->breadcrumb('元数据评审');
$this->breadcrumb()->setSeparator(' > ');
?>
<div class="row">
<div class="hidden-sm hidden-xs col-md-2">
<?= $this->partial('review/left.phtml'); ?>
</div>
<div class="col-md-10 col-sm-12">
<?php if ($this->msg or $this->messages) :?>
<div id="message" class="alert alert-info">
<?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="form-group">
<ul class="nav nav-tabs">
<li><a href="/admin/review/comments/">按评审数据查看</a></li>
<li class="active"><a href="/admin/review/comments/ac/listbyuser">按评审用户查看</a></li>
<li><a href="/admin/review/comments/ac/list">直接查看评审意见列表</a></li>
</ul>
</div>
<div class="input-group form-group">
<form action="" method="get" class="input-group">
<input type="text" class="q form-control" name="q" value="<?php echo $this->q; ?>" placeholder="搜索关键字" />
<input type="hidden" name="search" value='1' />
<input type="hidden" name="id" value='<?php echo $this->id;?>' />
<span class="input-group-btn"><button class="btn btn-default" type="submit" id="search_btn">搜索</button></span>
</form>
</div><!-- search DIV -->
<table class="stylized table table-bordered table-striped table-hover">
<thead>
<tr>
<td width='600'>评审人</td>
<td width='80'>评审次数</td>
<td width='80'>操作</td>
</tr>
</thead>
<?php if (count($this->paginator)): ?>
<tbody id="list">
<?php foreach ($this->paginator as $item): ?>
<tr>
<td><a href="/admin/user/show/id/<?php echo $item['id'];?>"><?php echo $item['title']; ?></a></td>
<td><?php echo $item['c'];?></td>
<td><a href="/admin/review/comments/ac/list/userid/<?php echo $item['id']?>">查看详细</a></td>
</tr>
<?php endforeach; ?>
</tbody>
<?php endif; ?>
</table>
<div class="pagenavi"><?= $this->paginator; ?></div>
</div>
</div>
<script>$("#list tr").mouseover(function(){$(this).addClass("high")}).mouseout(function(){$(this).removeClass("high")})</script>