102 lines
4.2 KiB
PHTML
102 lines
4.2 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle($this->config->title->author);
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
||
$this->headLink()->appendStylesheet('/css/admin.css');
|
||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
||
$this->headLink()->appendStylesheet('/css/author.css');
|
||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
||
$this->breadcrumb('<a href="/">首页</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"><a class="text-shadow" href="/admin/data/author">作者管理</a></li>
|
||
<li class="box-shadow"><a class="text-shadow" href="/admin/data/author/ac/list">查看所有数据作者</a></li>
|
||
<li class="box-shadow active"><a class="text-shadow" href="/admin/data/author/ac/datas">所有数据</a></li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<p>请输入元数据标题关键字进行搜索</p>
|
||
<form id="datasearch" class="search_form" action="/admin/data/author/ac/datas">
|
||
<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 id="datalist">
|
||
<?php
|
||
if (count($this->paginator)):
|
||
if ($this->mdtitle) echo "<h2>元数据:".$this->mdtitle."</h2>";
|
||
echo "<ul>";
|
||
$autoindex=0;
|
||
foreach ($this->paginator as $item):
|
||
$autoindex++;?>
|
||
<li id="list_<?php echo $item['id'];?>">
|
||
<p><a href="/data/<?php echo $item['uuid'];?>" target="_blank"><?php echo $item['title'];?></a> </p>
|
||
<p>
|
||
<?php if ($item['c']) : ?>
|
||
作者数量 :<span id="sumAuthor_<?php echo $item['id'];?>"><?php echo $item['c']; ?></span> | <a href="/admin/data/author/ac/edit/uuid/<?php echo $item['uuid']; ?>/window/iframe" class="iframe">作者管理</a> |
|
||
<?php endif; ?>
|
||
<span id="addauthor_<?php echo $item['id'];?>"><a href="javascript:;" onclick="AddAuthor(<?php echo $item['id']; ?>,'<?php echo $item['uuid']; ?>')">添加作者</a></span>
|
||
<?php if($item['c']):?>
|
||
| <span id="sendmail_<?php echo $item['id'];?>"><a href="javascript:;" onclick="SendMail('<?php echo $item['uuid']; ?>')">发邮件</a></span>
|
||
<?php endif;?>
|
||
</p>
|
||
</li>
|
||
<?php endforeach;
|
||
echo "</ul>";
|
||
endif; ?>
|
||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||
</div>
|
||
</div>
|
||
<!-- //页面内容 -->
|
||
<script>
|
||
function AddAuthor(id,uuid){
|
||
$('#addauthor_'+id).html('用户名:<input type="text" id="authorInp_'+id+'"/><button class="btn btn-green" onclick="addAuthor('+id+',\''+uuid+'\')">添加</button>');
|
||
}
|
||
function addAuthor(id,uuid){
|
||
$.ajax({
|
||
'type':"POST",
|
||
'url':'/admin/data/author',
|
||
'data':'ac=add&uuid='+uuid+'&username='+$('#authorInp_'+id).val(),
|
||
'success':function(data){
|
||
if (typeof(data)=='object')
|
||
{
|
||
if(typeof(data.error)!='undefined')
|
||
{Alert(data.error);return false;}
|
||
if(typeof(data.msg)!='undefined')
|
||
{Alert(data.msg);}
|
||
if(typeof(data.added)!='undefined')
|
||
{$('#addauthor_'+id).html('<a href="javascript:;" onclick="AddAuthor('+id+',\''+uuid+'\')">添加作者</a>');}
|
||
}
|
||
else{
|
||
Alert('出现错误,请稍后再试');
|
||
}
|
||
},
|
||
'timeout': 30000,
|
||
'error': function(){
|
||
$.colorbox({'innerWidth':'50%','html':'<img src="/images/alert_big_error.png" /><h4>处理中出现错误,请刷新页面后重试</h4>'});
|
||
}
|
||
});
|
||
}
|
||
function SendMail(uuid){
|
||
$('#sendmail_'+id).html('');
|
||
}
|
||
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
||
$(".inline").colorbox({inline:true, width:"50%"});
|
||
function Alert(html){
|
||
$.colorbox({'innerWidth':'50%','html':'<h4 style="font-size:16px;font-weight:bold;">'+html+'</h4>'});
|
||
}
|
||
</script>
|