66 lines
2.3 KiB
PHTML
66 lines
2.3 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle($this->config->title->author);
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/author.css');
|
|
$this->theme->AppendPlus($this,'colorbox');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/author">数据作者</a>');
|
|
$this->breadcrumb('数据文献管理');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div class="row">
|
|
<div class="span3">
|
|
<?= $this->partial('author/navi.phtml'); ?>
|
|
</div>
|
|
<div class="span9">
|
|
<?= $this->partial('author/literature-nav.phtml',array('ac'=>$this->ac,'uuid'=>$this->uuid)); ?>
|
|
<p>请输入文献标题关键字进行搜索</p>
|
|
<div class="input-append">
|
|
<form id="datasearch" class="search_form" action="">
|
|
<input type="text" id="keyword" name="q" value="<?php if(!empty($this->q)) echo $this->q; ?>" />
|
|
<button type="submit" class="btn" id="search_btn">搜索</button>
|
|
</form>
|
|
</div>
|
|
<div>
|
|
<?php if (count($this->paginator)): ?>
|
|
<ul class='unstyled'>
|
|
<?php
|
|
if($this->page > 1)
|
|
{
|
|
$autoindex = ($this->page - 1) * $this->pagelimit;
|
|
}else{
|
|
$autoindex=0;
|
|
}
|
|
foreach ($this->paginator as $item):
|
|
$autoindex++;
|
|
?>
|
|
<li class="well">
|
|
<p><?= $autoindex ?>. <?php echo $item['reference'];?></p>
|
|
<p>此文献共施引了我的<?php echo $item['c'];?>条数据。
|
|
【 <a href="/knowledge/paper/id/<?php echo $item['id'];?>">查看</a>
|
|
| <a href="javascript:;" onclick="showdata('<?php echo $item['id'];?>',0)"><i class="icon-external-link text-success"></i>文献对应数据</a>
|
|
】 </p>
|
|
</li>
|
|
<?php endforeach;
|
|
echo "</ul>";
|
|
endif; ?>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
</div>
|
|
|
|
|
|
</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});}
|
|
});
|
|
}
|
|
$(".iframe").colorbox({iframe:true, width:"60%", height:"80%"});
|
|
</script>
|