|
|
<admintpl file="header" />
|
|
|
<style type="text/css">
|
|
|
.pic-list li {
|
|
|
margin-bottom: 5px;
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
<div class="wrap js-check-wrap">
|
|
|
<ul class="nav nav-tabs">
|
|
|
<li><a href="{:U('WillMissionPrize/index',array('mid'=>$mid))}">奖项列表</a></li>
|
|
|
<li class="active"><a target="_self">编辑奖项</a></li>
|
|
|
</ul>
|
|
|
<form action="{:U('WillMissionPrize/edit_post',array('mid'=>$mid))}" method="post" class="form-horizontal js-ajax-forms" enctype="multipart/form-data">
|
|
|
<div class="row-fluid">
|
|
|
<div class="span9">
|
|
|
<table class="table table-bordered">
|
|
|
<tr>
|
|
|
<th width="150">奖项名称</th>
|
|
|
<td>
|
|
|
<input type="text" style="width:400px;" name="name" id="name" value="{$post.name}" required placeholder="请输入奖项名称"/>
|
|
|
<span class="form-required">*</span>
|
|
|
<input type="hidden" name="id" value="{$post.id}"/>
|
|
|
<input type="hidden" name="mid" value="{$mid}"/>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<th>奖项级别</th>
|
|
|
<td>
|
|
|
<input type="text" style="width:400px;" name="level" id="level" value="{$post.level}" required placeholder="请输入奖项级别"/>
|
|
|
<span class="form-required">*</span>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<th>奖项人数</th>
|
|
|
<td>
|
|
|
<input type="text" style="width:400px;" name="num" value="{$post.num}" id="num" required placeholder="请输入奖项人数" autocomplete="off"/>
|
|
|
<span class="form-required">*</span>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</div>
|
|
|
<div class="span3">
|
|
|
<table class="table table-bordered">
|
|
|
<tr>
|
|
|
<th><b>缩略图</b></th>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>
|
|
|
<div style="text-align: center;">
|
|
|
<input type="hidden" name="thumb" id="thumb" value="{$post.thumb|default=''}">
|
|
|
<a href="javascript:upload_one_image('图片上传','#thumb');">
|
|
|
<if condition="empty($post['thumb'])">
|
|
|
<img src="__TMPL__Public/assets/images/default-thumbnail.png" id="thumb-preview" width="135" style="cursor: hand" />
|
|
|
<else />
|
|
|
<img src="{:sp_get_image_preview_url($post['thumb'])}" id="thumb-preview" width="135" style="cursor: hand"/>
|
|
|
</if>
|
|
|
</a>
|
|
|
<input type="button" class="btn btn-small" onclick="$('#thumb-preview').attr('src','__TMPL__Public/assets/images/default-thumbnail.png');$('#thumb').val('');return false;" value="取消图片">
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-actions">
|
|
|
<button class="btn btn-primary js-ajax-submit" type="submit">提交</button>
|
|
|
<a class="btn" href="{:U('WillMissionPrize/index',array('mid'=>$mid))}">返回</a>
|
|
|
</div>
|
|
|
</form>
|
|
|
</div>
|
|
|
<script type="text/javascript" src="__PUBLIC__/js/common.js"></script>
|
|
|
<script type="text/javascript">
|
|
|
$(function() {
|
|
|
$(".js-ajax-close-btn").on('click', function(e) {
|
|
|
e.preventDefault();
|
|
|
Wind.use("artDialog", function() {
|
|
|
art.dialog({
|
|
|
id : "question",
|
|
|
icon : "question",
|
|
|
fixed : true,
|
|
|
lock : true,
|
|
|
background : "#CCCCCC",
|
|
|
opacity : 0,
|
|
|
content : "您确定需要关闭当前页面嘛?",
|
|
|
ok : function() {
|
|
|
setCookie("refersh_time", 1);
|
|
|
window.close();
|
|
|
return true;
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
});
|
|
|
/////---------------------
|
|
|
Wind.use('validate', 'ajaxForm', 'artDialog', function() {
|
|
|
//javascript
|
|
|
|
|
|
//编辑器
|
|
|
editorcontent = new baidu.editor.ui.Editor();
|
|
|
editorcontent.render('content');
|
|
|
try {
|
|
|
editorcontent.sync();
|
|
|
} catch (err) {
|
|
|
}
|
|
|
//增加编辑器验证规则
|
|
|
jQuery.validator.addMethod('editorcontent', function() {
|
|
|
try {
|
|
|
editorcontent.sync();
|
|
|
} catch (err) {
|
|
|
}
|
|
|
return editorcontent.hasContents();
|
|
|
});
|
|
|
var form = $('form.js-ajax-forms');
|
|
|
//ie处理placeholder提交问题
|
|
|
if ($.browser && $.browser.msie) {
|
|
|
form.find('[placeholder]').each(function() {
|
|
|
var input = $(this);
|
|
|
if (input.val() == input.attr('placeholder')) {
|
|
|
input.val('');
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
var formloading = false;
|
|
|
//表单验证开始
|
|
|
form.validate({
|
|
|
//是否在获取焦点时验证
|
|
|
onfocusout : false,
|
|
|
//是否在敲击键盘时验证
|
|
|
onkeyup : false,
|
|
|
//当鼠标掉级时验证
|
|
|
onclick : false,
|
|
|
//验证错误
|
|
|
showErrors : function(errorMap, errorArr) {
|
|
|
//errorMap {'name':'错误信息'}
|
|
|
//errorArr [{'message':'错误信息',element:({})}]
|
|
|
try {
|
|
|
$(errorArr[0].element).focus();
|
|
|
art.dialog({
|
|
|
id : 'error',
|
|
|
icon : 'error',
|
|
|
lock : true,
|
|
|
fixed : true,
|
|
|
background : "#CCCCCC",
|
|
|
opacity : 0,
|
|
|
content : errorArr[0].message,
|
|
|
cancelVal : '确定',
|
|
|
cancel : function() {
|
|
|
$(errorArr[0].element).focus();
|
|
|
}
|
|
|
});
|
|
|
} catch (err) {
|
|
|
}
|
|
|
},
|
|
|
//验证规则
|
|
|
rules : {
|
|
|
'name' : {
|
|
|
required : 1
|
|
|
}
|
|
|
},
|
|
|
//验证未通过提示消息
|
|
|
messages : {
|
|
|
'name' : {
|
|
|
required : '请输入名称'
|
|
|
}
|
|
|
},
|
|
|
//给未通过验证的元素加效果,闪烁等
|
|
|
highlight : false,
|
|
|
//是否在获取焦点时验证
|
|
|
onfocusout : false,
|
|
|
//验证通过,提交表单
|
|
|
submitHandler : function(forms) {
|
|
|
if (formloading)
|
|
|
return;
|
|
|
$(forms).ajaxSubmit({
|
|
|
url : form.attr('action'), //按钮上是否自定义提交地址(多按钮情况)
|
|
|
dataType : 'json',
|
|
|
beforeSubmit : function(arr, $form, options) {
|
|
|
formloading = true;
|
|
|
},
|
|
|
success : function(data, statusText, xhr, $form) {
|
|
|
formloading = false;
|
|
|
if (data.status) {
|
|
|
setCookie("refersh_time", 1);
|
|
|
//添加成功
|
|
|
Wind.use("artDialog", function() {
|
|
|
art.dialog({
|
|
|
id : "succeed",
|
|
|
icon : "succeed",
|
|
|
fixed : true,
|
|
|
lock : true,
|
|
|
background : "#CCCCCC",
|
|
|
opacity : 0,
|
|
|
content : data.info,
|
|
|
button : [ {
|
|
|
name : '继续编辑?',
|
|
|
callback : function() {
|
|
|
return true;
|
|
|
},
|
|
|
focus : true
|
|
|
}, {
|
|
|
name : '返回列表页',
|
|
|
callback : function() {
|
|
|
location = "{:U('WillMissionPrize/index',array('mid'=>$mid))}";
|
|
|
return true;
|
|
|
}
|
|
|
} ]
|
|
|
});
|
|
|
});
|
|
|
} else {
|
|
|
artdialog_alert(data.info);
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
////-------------------------
|
|
|
});
|
|
|
</script>
|
|
|
</body>
|
|
|
</html> |
|
|
\ No newline at end of file |
...
|
...
|
|