You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.3 KiB
85 lines
2.3 KiB
{extend name="admin@public/base" /}
|
|
{block name="main-content"}
|
|
<script src="__PUBLIC__/ueditor/ueditor.config.js" type="text/javascript"></script>
|
|
<script src="__PUBLIC__/ueditor/ueditor.all.js" type="text/javascript"></script>
|
|
<script src="__PUBLIC__/others/jquery-ui-1.10.3.min.js"></script>
|
|
<script src="__PUBLIC__/others/jquery.ui.widget.js"></script>
|
|
<script src="__PUBLIC__/others/jquery.fileupload.js"></script>
|
|
<script src="__PUBLIC__/others/base.js"></script>
|
|
<style>
|
|
.table-bordered>tbody>tr>td{padding:4px;}
|
|
.filebtn{
|
|
position: relative;
|
|
display: inline-block;
|
|
background: #d0eeff;
|
|
border: 1px solid #99d3f5;
|
|
border-radius: 4px;
|
|
padding: 4px 9pt;
|
|
overflow: hidden;
|
|
color: #1e88c7;
|
|
text-decoration: none;
|
|
text-indent: 0;
|
|
line-height: 25px;
|
|
}
|
|
.filebtn input[type='file']{
|
|
position: absolute;
|
|
z-index:999;
|
|
font-size: 75pt;
|
|
right: 10;
|
|
top: 0;
|
|
opacity: 0;
|
|
}
|
|
.text-left{text-align:left !important;}
|
|
</style>
|
|
<div class="page-content">
|
|
<!--主题-->
|
|
<div class="page-header">
|
|
<h1>
|
|
您当前操作
|
|
<small>
|
|
<i class="ace-icon fa fa-angle-double-right"></i>
|
|
查看报名信息
|
|
</small>
|
|
</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<form class="form-horizontal postForm" name="list_edit" method="post" action="{:url('admin/Activitys/runedit',['kind'=>$kind])}">
|
|
{volist name="showlist" id="vo"}
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label no-padding-right" >{$vo.key}: </label>
|
|
<div class="col-sm-10">
|
|
<div class="control-label text-left">{$vo.val}</div>
|
|
</div>
|
|
</div>
|
|
<div class="space-4"></div>
|
|
{/volist}
|
|
<div class="clearfix form-actions">
|
|
<div class="col-md-offset-3 col-md-9">
|
|
<button class="btn btn-info" type="button" onclick="window.history.go(-1)">
|
|
<i class="ace-icon fa fa-check bigger-110"></i>
|
|
返回
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div><!-- /.page-content -->
|
|
<script>
|
|
function showRequest2(){
|
|
loading("保存中");
|
|
return true;
|
|
}
|
|
|
|
$(function(){
|
|
$('.postForm').ajaxForm({
|
|
beforeSerialize: showRequest2, //提交前的回调函数
|
|
success: complete, // 这是提交后的方法
|
|
dataType: 'json'
|
|
});
|
|
|
|
})
|
|
</script>
|
|
{/block}
|