86 lines
2.7 KiB
PHTML
86 lines
2.7 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/author.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/author">数据作者</a>');
|
|
$this->breadcrumb('我的数据');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<!-- 左侧导航 -->
|
|
<div id='sidebar'>
|
|
<div id='leftnavi'>
|
|
<?= $this->partial('author/navi.phtml'); ?>
|
|
</div>
|
|
</div>
|
|
<!-- //左侧导航 -->
|
|
|
|
<!-- 页面内容 -->
|
|
<div id="wapper">
|
|
<p>请输入元数据标题关键字进行搜索</p>
|
|
<form id="datasearch" class="search_form" action="/author/accept/ac/search">
|
|
<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 id="datalist">
|
|
<?php
|
|
if (count($this->paginator)):
|
|
echo "<ul>";
|
|
$autoindex=0;
|
|
foreach ($this->paginator as $item):
|
|
$autoindex++;?>
|
|
<li>
|
|
<a href="/data/<?php echo $item['uuid'];?>" target="_blank"><?php echo $item['title'];?></a>
|
|
<p><?php echo $item['description'] ?></p>
|
|
<p>
|
|
<?php
|
|
if($item['status']==1)
|
|
{
|
|
echo '';
|
|
}//已经是自己的数据
|
|
if ($item['status']==0)
|
|
{
|
|
echo '<img src="/images/list_extensions.gif" />您已经申请该数据,请到邮箱查看激活邮件(如果没有收到请 <a href="javascript:;" onclick="apply(\''.$item['uuid'].'\')">点击这里</a>)';
|
|
}
|
|
?>
|
|
<span id="data_<?php echo $item['uuid'];?>"></span>
|
|
</p>
|
|
</li>
|
|
<?php endforeach;
|
|
echo "</ul>";
|
|
endif; ?>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
</div>
|
|
</div>
|
|
<!-- //页面内容 -->
|
|
<script>
|
|
$('#wapper').width($('body').width()-300);
|
|
function apply(uuid){
|
|
$.ajax({
|
|
'type':"POST",
|
|
'url':'/author/apply',
|
|
'data':'ac=apply&m=send&uuid='+uuid,
|
|
'success':function(data){
|
|
if (isObject(data))
|
|
{
|
|
if(typeof(data.error)!='undefined')
|
|
{alert(data.error);}
|
|
else{alert('请重试');}
|
|
}
|
|
else{ alert('出现错误,请稍候');}
|
|
$('#data_'+uuid).html('');
|
|
},
|
|
'beforeSend':function(){
|
|
$('#data_'+uuid).html('<img src="/images/ajax-load-small.gif" />正在处理...');
|
|
},
|
|
'timeout': 20000,
|
|
'error': function(){
|
|
alert('处理中出现问题,请重试');
|
|
$('#data_'+uuid).html('');
|
|
}
|
|
});
|
|
}
|
|
function isObject(obj){if(typeof(obj)=='object'){return true;}else if(typeof(obj)!='object'){return false;}else{return false;}}
|
|
</script>
|