46 lines
1.5 KiB
PHTML
46 lines
1.5 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="span12">
|
||
|
|
||
|
<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'];
|
||
|
if ($md['link'])
|
||
|
{
|
||
|
echo ' <a href="'.$md['link'].'">下载</a>';
|
||
|
}
|
||
|
?>
|
||
|
[<a href="javascript:;" onclick="showdata('<?php echo $md['id'];?>',0)">相关数据</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>
|