2012-08-27 01:54:38 +00:00
|
|
|
<?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/down">申请管理</a>');
|
|
|
|
$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/colorbox.css');
|
|
|
|
$this->breadcrumb('离线数据申请管理</a>');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
?>
|
|
|
|
<div id="leftPanel">
|
|
|
|
<?= $this->partial('down/left.phtml'); ?>
|
|
|
|
</div>
|
|
|
|
<div id="rightPanel">
|
|
|
|
|
|
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
|
|
<div id="message">
|
|
|
|
<?php if ($this->msg) : ?>
|
|
|
|
<p><?php echo $this->msg; ?></p>
|
|
|
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
|
|
|
<p><?php echo $msg; ?></p>
|
|
|
|
<?php endforeach;endif; ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<div class="right_title">离线数据申请管理</div>
|
|
|
|
|
|
|
|
<a href="/admin/down/offlineapp/reset/-1" onclick="return confirm('是否重置该申请?')">重置1年前的所有未收到申请表的记录</a>
|
|
|
|
| <a href="/admin/down/offlineapp/status/4">已收到的申请</a>
|
|
|
|
| <a href="/admin/down/offlineapp/status/-1">已拒绝的申请</a>
|
|
|
|
| <a href="/admin/down/offlineapp">待处理的申请</a>
|
|
|
|
| <a href="/admin/down/offline">已通过的申请(离线服务记录)</a>
|
|
|
|
|
|
|
|
<div id="datalist">
|
|
|
|
<?php
|
|
|
|
if (count($this->paginator)):
|
|
|
|
echo "<ul>";
|
|
|
|
$autoindex=0;
|
|
|
|
foreach ($this->paginator as $item):
|
|
|
|
$autoindex++;?>
|
|
|
|
<li id="list_<?php echo $item['id'];?>">
|
|
|
|
<p>
|
|
|
|
<a href="mailto:<?= $item['email']; ?>?subject=答复数据申请问题"><?= $item['username']; ?></a> |
|
|
|
|
申请时间:<?= date('Y-m-d',strtotime($item['ts_created'])); ?></p>
|
|
|
|
<p>
|
|
|
|
单位:<?= $item['unit']; ?> |
|
|
|
|
地址:<?= $item['address']; ?> |
|
|
|
|
邮编:<?= $item['postcode']; ?>
|
|
|
|
</p>
|
|
|
|
<p>
|
2012-08-27 08:21:31 +00:00
|
|
|
用途:
|
|
|
|
<p style="width:95%;margin:0px auto;"><q><cite><?= $item['project'].'['.$item['project_title'].' | '.$item['project_type'].' | '.$item['project_id'].']'; ?></cite></q></p>
|
2012-08-27 01:54:38 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
数据清单:<?= $item['datalist']; ?>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="/admin/down/offlineapp/view/<?= $item['id']; ?>">申请表</a> |
|
|
|
|
<?php if ($item['datastatus']==3) : ?>
|
|
|
|
<span id="start_<?= $item['id']; ?>"><a href="javascript:action('start',<?= $item['id']; ?>);" onclick="return confirm('确定收到该申请?')">收到</a></span> |
|
|
|
|
<?php endif; ?>
|
|
|
|
<a href="javascript:action('finish',<?= $item['id']; ?>);" onclick="return confirm('确定确定通过该申请?')">通过</a> |
|
|
|
|
<a href="javascript:action('deleted',<?= $item['id']; ?>);" onclick="return confirm('确定将此记录删除?')">删除</a> |
|
|
|
|
<a href="javascript:action('deny',<?= $item['id']; ?>);" onclick="return confirm('确定拒绝该申请?')">拒绝</a> |
|
|
|
|
<a href="javascript:action('reset',<?= $item['id']; ?>);" onclick="return confirm('是否重置该申请?')">重置</a>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
<?php endforeach;
|
|
|
|
echo "</ul>";
|
|
|
|
endif; ?>
|
|
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function action(name,id){
|
|
|
|
var url;
|
|
|
|
if(name == "start")
|
|
|
|
{url = '/admin/down/offlineapp/start/'+id;}
|
|
|
|
if(name == "finish")
|
|
|
|
{url = '/admin/down/offlineapp/finish/'+id;}
|
|
|
|
if(name == "deleted")
|
|
|
|
{url = '/admin/down/offlineapp/cancel/'+id;}
|
|
|
|
if(name == "deny")
|
|
|
|
{url = '/admin/down/offlineapp/deny/'+id;}
|
|
|
|
if(name == "reset")
|
|
|
|
{url = '/admin/down/offlineapp/reset/'+id;}
|
|
|
|
$.ajax({
|
|
|
|
'type':"POST",
|
|
|
|
'url':url,
|
|
|
|
'data':'',
|
|
|
|
'success':OnDataLoad,
|
|
|
|
'timeout': 30000,
|
|
|
|
'error': AjaxError
|
|
|
|
});
|
|
|
|
}
|
|
|
|
function OnDataLoad(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.started)!='undefined')
|
|
|
|
{$('#start_'+data.started).remove();}
|
|
|
|
if(typeof(data.finish) != 'undefined')
|
|
|
|
{$('#list_'+data.finish).fadeOut();}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Alert('出现错误,请稍后再试');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function AjaxError(){
|
|
|
|
$.colorbox({'innerWidth':'50%','html':'<img src="/images/alert_big_error.png" /><h4>处理中出现错误,请刷新页面后重试</h4>'});
|
|
|
|
}
|
|
|
|
$(".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>
|