51 lines
1.8 KiB
PHTML
51 lines
1.8 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle($this->config->title->data);
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/water.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->theme->AppendPlus($this,'colorbox');
|
|
$this->nav[] = array('link'=>"/haihe",'title'=>'海河流域观测数据集');
|
|
?>
|
|
<?= $this->render('breadcrumbs.phtml'); ?>
|
|
<div class="row">
|
|
<div class="span2">
|
|
<?= $this->partial('haihe/navi.phtml'); ?>
|
|
</div>
|
|
|
|
<div class="span10">
|
|
<h3>数据相关文献</h3>
|
|
<?php if ($this->refs) : ?>
|
|
<?php echo $this->page->getNavigation(); ?>
|
|
<div id="mdlist">
|
|
<ol start="<?php echo $this->offset; ?>">
|
|
<?php foreach($this->refs as $md) : ?>
|
|
<li><?php echo $md['reference'];
|
|
echo ' [<a href="/knowledge/paper/id/'.$md['id'].'"><i class="icon-info-sign text-success"></i>查看</a>';
|
|
if (!empty($md['link'])) :
|
|
echo ' <a href="'.$md['link'].'">下载</a>';
|
|
else :
|
|
if (!empty($md['attid'])) echo ' <a href="/service/attach/id/'.$md['attid'].'"><i class="icon-download text-success"></i>下载</a>';
|
|
endif;
|
|
?>
|
|
<a href="javascript:;" onclick="showdata('<?php echo $md['id'];?>',0)"><i class="icon-external-link text-success"></i>相关数据</a>]
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ol>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function showdata(id,page){
|
|
var url="/service/refdatalist/id/"+id;
|
|
$.ajax({
|
|
'type':"GET",
|
|
'url':url,
|
|
'data':'page='+page,
|
|
'dataType':'html',
|
|
'success':function(html){$.colorbox({'html':html,'innerHeight':230});}
|
|
});
|
|
}
|
|
</script>
|