2011-11-01 02:51:51 +00:00
|
|
|
<?php
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle($this->config->title->review);
|
|
|
|
$this->headTitle('快速搜索');
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
$this->breadcrumb('<a href="/review">'.$this->config->title->review.'</a>');
|
|
|
|
$this->breadcrumb('快速搜索');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
$this->headScript()->appendFile('/js/pubfunc.js');
|
2013-04-10 04:08:10 +00:00
|
|
|
?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="span3">
|
|
|
|
<?= $this->partial('review/navi.phtml',array('key'=>$this->key)); ?>
|
|
|
|
</div>
|
|
|
|
<div class="span9">
|
|
|
|
|
2011-11-01 02:51:51 +00:00
|
|
|
<?php if (!empty($this->metadata)) : ?>
|
|
|
|
<div id='mdlist'>
|
|
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
|
|
<hr />
|
|
|
|
<?php foreach($this->metadata as $md) :
|
|
|
|
$thumburl='/gndata/'.sprintf('%05d',floor(($md['gid']+0.1)/100)*100).'-'.sprintf('%05d',ceil(($md['gid']+0.1)/100)*100-1)."/".$md['gid'];
|
2011-10-27 14:30:52 +00:00
|
|
|
$thumburl.='/public/'.str_replace('_s.','.',$md['filename']);
|
2011-11-01 02:51:51 +00:00
|
|
|
?>
|
|
|
|
<div class="thumbmd">
|
|
|
|
<div class="thumbtitle">
|
|
|
|
<a href="/data/<?php echo $md['uuid'];?>"><?php echo $this->escape($md['title']); ?> </a>【状态:<?php echo $md['statustext']; ?>】
|
|
|
|
<?php if ($md['status']!=5) : ?>
|
|
|
|
<a href="/review/review/uuid/<?php echo $md['uuid'];?>"><img src="/images/review.png" alt="查看评审页" title="进行数据评审"></a>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<img class="thumbimg" src="/service/thumb/id/<?php echo $md['id'];?>" alt="<?php echo $this->escape($md['title']);?>" title="<?php echo mb_strlen($md['description'])>400?$this->escape(mb_substr($md['description'],0,400,'UTF-8').'...'):$this->escape($md['description']);?>"
|
|
|
|
onclick="fnCreate('<?php echo $thumburl; ?>')" />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<hr class="clear"/>
|
|
|
|
<?php echo $this->page->getNavigation();
|
|
|
|
else :
|
|
|
|
?>
|
|
|
|
<div>
|
|
|
|
<p>您的搜索结果为空,请尝试其他关键词进行查询。</p>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
2013-04-10 04:08:10 +00:00
|
|
|
</div>
|
2011-11-01 02:51:51 +00:00
|
|
|
</div>
|