111 lines
4.4 KiB
PHTML
111 lines
4.4 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
$this->headLink()->appendStylesheet('/css/author.css');
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
|
|
$this->breadcrumb('新建元数据');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<!-- 左侧导航 -->
|
|
<div id='leftPanel'>
|
|
<?= $this->partial('data/left.phtml'); ?>
|
|
</div>
|
|
<!-- //左侧导航 -->
|
|
|
|
<!-- 页面内容 -->
|
|
<div id="rightPanel">
|
|
<div id="tabs-controller">
|
|
<ul>
|
|
<li class="box-shadow active"><a class="text-shadow" href="/admin/data/newdata">未提交数据列表</a></li>
|
|
<li class="box-shadow"><a class="text-shadow iframe" href="/service/geonetwork?url=metadata.xmlinsert.form">导入元数据</a></li>
|
|
<li class="box-shadow"><a class="text-shadow" href="/admin/data/newdata/ac/add-by-template">根据模板新建元数据</a></li>
|
|
<li class="box-shadow"><a class="text-shadow" href="/admin/data/newdata/ac/add-by-data">根据已有数据新建元数据</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="datalist">
|
|
<?php
|
|
if (count($this->paginator)):
|
|
echo "<ul>";
|
|
$autoindex=0;
|
|
foreach ($this->paginator as $item):
|
|
$autoindex++;
|
|
?>
|
|
<li>
|
|
<p><?php echo $item['username'];?>(<?php echo $item['realname'];?>) <span class="title"><?php echo $item['title'];?></span>
|
|
【<a href="/service/geonetwork?url=metadata.show?id=<?php echo $item['id']; ?>" target="_blank">在geonetwork里查看</a>
|
|
| <a href="/service/geonetwork?url=metadata.edit?id=<?php echo $item['id']; ?>" target="_blank">在geonetwork里修改</a>
|
|
| <a href="/service/geonetwork?url=metadata.delete?id=<?php echo $item['id']; ?>" target="_blank">删除此条数据</a>
|
|
| <a onclick="validate(<?php echo $item['id'];?>);" class="more inline">检查元数据错误</a>
|
|
| <a onclick="$('#commit_submit').attr('onclick','commit(\'<?php echo $item['id'];?>\');');" href="#commitform" class="more inline">提交评审发布</a>
|
|
】</p>
|
|
</li>
|
|
<?php
|
|
endforeach;
|
|
echo "</ul>";
|
|
else :
|
|
echo "<p>您当前没有未提交的数据。</p>";
|
|
endif; ?>
|
|
</div>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
</div>
|
|
<!-- //页面内容 -->
|
|
<script>
|
|
$('#wapper').width($('body').width()-300);
|
|
|
|
function action(ac,id){
|
|
$.ajax({
|
|
'type':"POST",
|
|
'url':'/admin/data/newdata/',
|
|
'data':'ac='+ ac +'&id='+id,
|
|
'success':function(data){
|
|
if (typeof(data)=='object')
|
|
{
|
|
if(typeof(data.error)!='undefined')
|
|
{$.colorbox({'innerWidth':'50%','html':data.error});}
|
|
if(typeof(data.deleted)!='undefined')
|
|
{$('#list_'+data.deleted).fadeOut("slow",function(){$(this).remove();});}
|
|
if(typeof(data.commited)!='undefined')
|
|
{$('#changelog').val('');$('#commit_submit').attr('onclick','');}
|
|
}
|
|
else{
|
|
$.colorbox({'innerWidth':'50%','html':'<img src="/images/alert_big_warning.png" /><h4>出现错误,请稍候再试</h4>'});
|
|
}
|
|
},
|
|
'timeout': 30000,
|
|
'error': function(){
|
|
$.colorbox({'innerWidth':'50%','html':'<img src="/images/alert_big_error.png" /><h4>处理中出现错误,请刷新页面后重试</h4>'});
|
|
}
|
|
});
|
|
}
|
|
$(".inline").colorbox({inline:true, width:"50%"});
|
|
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
|
function commit(id){
|
|
action('commit&changelog='+$('#changelog').val(),id);
|
|
}
|
|
function validate(id){
|
|
action('validate',id);
|
|
}
|
|
</script>
|
|
<div class="colorbox" style="display:none;">
|
|
<div id="commitform">
|
|
<form>
|
|
<p>
|
|
<label>简要功能:</label><br />
|
|
<textarea class="full" style="resize:none;height:200px;" id="changelog"></textarea>
|
|
<br /><small>请输入此数据的简要功能和特色</small>
|
|
</p>
|
|
<input type="button" onclick="" id="commit_submit" class="btn btn-green big" value="提交"/>
|
|
</form>
|
|
</div>
|
|
<div class="error"><img src="/images/alert_big_error.png" /><span></span></div>
|
|
<div class="ok"><img src="/images/alert_big_ok.png" /><span></span></div>
|
|
<div class="warning"><img src="/images/alert_big_warning.png" /><span></span></div>
|
|
</div>
|