2015-09-09 17:42:38 +08:00
|
|
|
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg' %>
|
2015-09-09 17:05:32 +08:00
|
|
|
|
<h3 style="float: left">
|
|
|
|
|
<%=l(:label_system_message)%>
|
|
|
|
|
</h3><br/>
|
|
|
|
|
<div style="padding-top: 20px; padding-left: 5px;">
|
2015-09-17 14:41:03 +08:00
|
|
|
|
<%= form_for(@admin_messages, :html => {:id =>'system_messages-form'}) do |f| %>
|
2015-09-17 16:23:09 +08:00
|
|
|
|
<div class="field">
|
|
|
|
|
<%= f.text_area :subject %>
|
|
|
|
|
</div>
|
2015-09-09 17:05:32 +08:00
|
|
|
|
<div class="field">
|
2015-09-14 15:33:11 +08:00
|
|
|
|
<%= f.kindeditor :description,:width=>'87%',:editor_id=>'system_message_editor' %>
|
2015-09-11 16:05:02 +08:00
|
|
|
|
<p id="content_notice_span" class="ml55"></p>
|
2015-09-09 17:05:32 +08:00
|
|
|
|
</div>
|
2015-09-11 09:48:16 +08:00
|
|
|
|
<div>
|
|
|
|
|
<p id="content_notice_span" class="ml55"></p>
|
|
|
|
|
</div>
|
2015-09-09 17:05:32 +08:00
|
|
|
|
<div class="actions">
|
2015-09-11 16:05:02 +08:00
|
|
|
|
<%= link_to l(:label_submit), "javascript:void(0)",:class => "small", :onclick => "system_message_editor.sync();submit_message();" %>
|
2015-09-09 17:05:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
2015-09-11 09:48:16 +08:00
|
|
|
|
<script>
|
2015-09-11 16:05:02 +08:00
|
|
|
|
function system_message_length() {
|
|
|
|
|
var obj = system_message_editor.html();
|
|
|
|
|
if (obj.length == 0) {
|
|
|
|
|
$("#content_notice_span").text("内容不能为空");
|
|
|
|
|
$("#content_notice_span").css('color', '#ff0000');
|
|
|
|
|
$("#content_notice_span").focus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-09-14 15:33:11 +08:00
|
|
|
|
else if (obj.length > 10000) {
|
2015-09-14 16:05:29 +08:00
|
|
|
|
$("#content_notice_span").text("内容过长,超过10000个字符");
|
2015-09-11 16:05:02 +08:00
|
|
|
|
$("#content_notice_span").css('color', '#ff0000');
|
|
|
|
|
$("#content_notice_span").focus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$("#content_notice_span").text("填写正确");
|
|
|
|
|
$("#content_notice_span").css('color', '#008000');
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function submit_message() {
|
|
|
|
|
|
|
|
|
|
if (system_message_length()) {
|
2015-09-17 14:41:03 +08:00
|
|
|
|
$("#system_messages-form").submit();
|
2015-09-11 10:30:01 +08:00
|
|
|
|
}
|
2015-09-11 16:05:02 +08:00
|
|
|
|
}
|
2015-09-11 09:48:16 +08:00
|
|
|
|
</script>
|
2015-09-09 17:05:32 +08:00
|
|
|
|
|