94 lines
4.2 KiB
PHTML
94 lines
4.2 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle('后台管理');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->headLink()->appendStylesheet('/css/admin.css');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
||
$this->breadcrumb('<a href="/admin/heihe">黑河数据集</a>');
|
||
$this->breadcrumb('黑河数据集');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
||
$this->headLink()->appendStylesheet('/css/author.css');
|
||
?>
|
||
<div id="leftPanel">
|
||
<?= $this->partial('heihe/left.phtml'); ?>
|
||
</div>
|
||
<div id="rightPanel">
|
||
<?php if(!empty($this->searchLink)){ ?>
|
||
<div>
|
||
<form id="datasearch" class="search_form" action="<?= $this->searchLink ?>">
|
||
<input type="text" id="keyword" name="q" value="<?= $this->searchKeyword; ?>" />
|
||
<button type="submit" class="btn" id="search_btn">搜索</button>
|
||
</form>
|
||
</div>
|
||
<?php }?>
|
||
<div>
|
||
共 <?= $this->Count; ?> 条记录
|
||
</div>
|
||
<div id="datalist">
|
||
<?php
|
||
if (count($this->paginator)):
|
||
echo "<ul>";
|
||
$autoindex=0;
|
||
foreach ($this->paginator as $item):
|
||
$autoindex++;
|
||
?>
|
||
<li>
|
||
<p><span class="title"><?php echo $item['title'];?></span></p>
|
||
<p>编号:<label><?= $item['code'];?></label> | 负责人:<?= $item['name'];?> | 开始时间:<?= $item['pstart'];?> | 状态:<?= $item['status'];?></p>
|
||
<p>
|
||
<a href="javascript:void(0);" onclick="$('#inviteFrom_<?= $item['id'];?>').toggle();">邀请跟踪专家</a> |
|
||
<a class="iframe" href="/admin/heihe/project/ac/showexpert/id/<?= $item['id'];?>">查看跟踪专家</a> |
|
||
<a href="/admin/heihe/project/ac/upload/pid/<?= $item['id']?>" class="iframe">上传计划</a>
|
||
</p>
|
||
<p id="inviteFrom_<?= $item['id'];?>" style="display:none;">
|
||
<input type="text" id="expert_name_<?= $item['id'];?>" value="<?= $this->input_NameDefaultVal ?>"
|
||
onfocus="if(this.value=='<?= $this->input_NameDefaultVal ?>'){this.value=''}" onblur="if(this.value==''){this.value='<?= $this->input_NameDefaultVal ?>'}" />
|
||
<input type="text" id="expert_email_<?= $item['id'];?>" value="<?= $this->input_EmailDefaultVal ?>"
|
||
onfocus="if(this.value=='<?= $this->input_EmailDefaultVal ?>'){this.value=''}" onblur="if(this.value==''){this.value='<?= $this->input_EmailDefaultVal ?>'}" />
|
||
<button type="button" class="btn btn-green" onclick="invite(<?= $item['id'];?>)" id="inviteBtn_<?= $item['id'];?>">邀请</button>
|
||
</p>
|
||
</li>
|
||
<?php
|
||
endforeach;
|
||
echo "</ul>";
|
||
endif; ?>
|
||
</div>
|
||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||
</div>
|
||
<script>
|
||
function invite(id){
|
||
var dom = "#inviteBtn_"+id;
|
||
var html = $(dom).html();
|
||
$.ajax({
|
||
'type':"POST",
|
||
'url':'/admin/heihe/project/ac/invite',
|
||
'data':'id='+id+'&name='+$('#expert_name_'+id).val()+'&email='+$('#expert_email_'+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.invited)!='undefined')
|
||
{$('#expert_name_'+id).val('');$('#expert_email_'+id).val('');}
|
||
}
|
||
else{
|
||
Alert('出现错误,请稍后再试');
|
||
}
|
||
},
|
||
'timeout': 30000,
|
||
'error': function(){Alert('处理中出现错误,请刷新页面后重试');},
|
||
'beforeSend':function(){$(dom).html('<img src="/images/ajax-load-small.gif" />');$(dom).attr("disabled","disabled")},
|
||
'complete':function(){$(dom).html(html);$(dom).removeAttr("disabled");dom = null;}
|
||
});
|
||
}
|
||
function Alert(html){
|
||
$.colorbox({'innerWidth':'50%','html':'<h4 style="font-size:16px;font-weight:bold;">'+html+'</h4>'});
|
||
}
|
||
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
||
</script>
|