修复数据链接错误,添加图片
This commit is contained in:
parent
fabcd090aa
commit
8f90fb0520
|
@ -1,13 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
$config = Zend_Registry::get('config');
|
$this->headTitle($this->config->title->site);
|
||||||
$this->headTitle($config->title->site);
|
$this->headTitle($this->config->title->mdreview);
|
||||||
$this->headTitle($config->title->mdreview);
|
|
||||||
$this->headTitle()->setSeparator(' - ');
|
$this->headTitle()->setSeparator(' - ');
|
||||||
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.6.4.min.js');
|
$this->headScript()->appendFile('/js/jquery-1.6.4.min.js');
|
||||||
$this->headScript()->appendFile('/js/jquery.masonry.min.js');
|
$this->headScript()->appendFile('/js/jquery.masonry.min.js');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/review">元数据评审</a>');
|
$this->breadcrumb('<a href="/review">元数据评审</a>');
|
||||||
|
$this->breadcrumb('我参审的元数据');
|
||||||
$this->breadcrumb()->setSeparator(' > ');
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
?>
|
?>
|
||||||
<div id='myreview'>
|
<div id='myreview'>
|
||||||
|
@ -38,9 +38,9 @@ setTimeout("document.getElementsByClassName('box-info').remove(0)",5000);
|
||||||
<?php foreach ($this->paginator as $item): ?>
|
<?php foreach ($this->paginator as $item): ?>
|
||||||
<li class="items">
|
<li class="items">
|
||||||
<img class="thumb" src="/data/thumb/id/<?php echo $item['id'];?>" width="180" />
|
<img class="thumb" src="/data/thumb/id/<?php echo $item['id'];?>" width="180" />
|
||||||
<a href="<?php echo $item['uuid'];?>"><?php echo $item['title'];?></a>
|
<a href="/data/<?php echo $item['uuid'];?>"><?php echo $item['title'];?></a>
|
||||||
<br />状态:<?php echo $item['status'];?>
|
<br />状态:<?php echo $item['status'];?>
|
||||||
<br /><a href="/review/review/uuid/<?php echo $item['uuid'];?>">查看评审页</a>
|
<br /><a href="/review/review/uuid/<?php echo $item['uuid'];?>"><img src="/images/review.png" alt="查看评审页" title="进行数据评审"></a>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach;?>
|
<?php endforeach;?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in New Issue