67 lines
2.3 KiB
PHTML
67 lines
2.3 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
|
|
$this->breadcrumb('文献管理');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->theme->AppendPlus($this,'colorbox');
|
|
$this->theme->AppendPlus($this,"uploadify");
|
|
$this->theme->AppendPlus($this,'admin_plugin');
|
|
?>
|
|
<style>
|
|
table thead tr th {background:#EBF2F6;}
|
|
</style>
|
|
<div class="row-fluid">
|
|
<div class="span2">
|
|
<?= $this->partial('data/left.phtml'); ?>
|
|
</div>
|
|
<div class="span10">
|
|
<div>
|
|
<?= $this->partial('data/ref-nav.phtml',array('ac'=>$this->ac)); ?>
|
|
</div>
|
|
<?php if(!empty($this->error)) { ?>
|
|
<?= $this->error ?>
|
|
<?php } ?>
|
|
<?php if(!empty($this->msg)) { ?>
|
|
<?= $this->msg ?>
|
|
<?php } else{ ?>
|
|
<?php if(empty($this->data)) { ?>
|
|
<form class="form-horizontal" method="post" enctype="multipart/form-data">
|
|
<div class="control-group">
|
|
<label class="control-label" for="inputPassword">RIS文件</label>
|
|
<div class="controls">
|
|
<input type="file" name="Filedata" id="file_upload" />
|
|
<div id="uploadedFile"></div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label" for="inputPassword">RIS文本</label>
|
|
<div class="controls">
|
|
<textarea class="input-block-level" name="ristest" rows="5"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="form-actions">
|
|
<input type="hidden" name="submit" value="1" />
|
|
<button type="submit" class="btn btn-primary">导入</button>
|
|
</div>
|
|
</form>
|
|
<?php }else{ ?>
|
|
<?php
|
|
foreach($this->data as $k=>$ref)
|
|
{
|
|
echo '<ul>';
|
|
foreach($ref as $index=>$value)
|
|
{
|
|
$v = is_array($value) ? join("|",$value) : $value;
|
|
echo '<li>'.$index .":". $v .'</li>';
|
|
}
|
|
echo "</ul>";
|
|
}
|
|
?>
|
|
<?php } ?>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
<!-- //页面内容 -->
|