change review button style

This commit is contained in:
wlx 2013-05-03 01:25:18 +00:00
parent 59736d36bd
commit b440ec216e
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ $this->headScript()->appendFile('/js/pubfunc.js');
<div class="media-body">
<h4 class="media-heading"><a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']); ?> </a>【接收时间:<?php echo date('Y-m-d',strtotime($md['ts_accepted'])); ?></h4>
<?php if ($md['status']!=5) : ?>
<a href="/review/review/uuid/<?php echo $md['uuid'];?>"><img src="/images/review.png" alt="查看评审页" title="进行数据评审"></a>
<a class="btn btn-primary" href="/review/review/uuid/<?php echo $md['uuid'];?>">进行数据评审</a>
<?php endif; ?>
<p><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></p>
</div>

View File

@ -29,7 +29,7 @@ $this->breadcrumb()->setSeparator(' > ');
<div class="media-body">
<h4 class="media-heading"><a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']); ?> </a> 【接收时间:<?php echo date('Y-m-d',strtotime($md['ts_accepted'])); ?></h4>
<?php if ($md['status']!=5) : ?>
<a href="/review/review/uuid/<?php echo $md['uuid'];?>"><img src="/images/review.png" alt="查看评审页" title="进行数据评审"></a>
<a class="btn btn-primary" href="/review/review/uuid/<?php echo $md['uuid'];?>">进行数据评审</a>
<?php endif; ?>
<p><?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?></p>
</div>