55 lines
2.2 KiB
Plaintext
55 lines
2.2 KiB
Plaintext
<%= content_for(:header_tags) do %>
|
|
<%= import_ke(enable_at: false, prettify: false, init_activity: false) %>
|
|
<% end %>
|
|
|
|
<script>
|
|
function check_org_title(title)
|
|
{
|
|
if($("#document_title").val().trim() == "")
|
|
{
|
|
$("#doc_title_hint").html("<span class='c_red'>标题不能为空</span>").show();
|
|
}
|
|
else
|
|
{
|
|
$("#doc_title_hint").hide();
|
|
}
|
|
}
|
|
</script>
|
|
<div class="homepageRightBanner mb5" style="margin-bottom:5px;">
|
|
<div class="NewsBannerName">编辑文章</div>
|
|
</div>
|
|
<div class="cl"></div>
|
|
<div>
|
|
<%= form_tag url_for(:controller => 'org_document_comments',:action => 'update', :id => @org_document.id, :flag => @flag, :org_subfield_id => params[:org_subfield_id]),:method => 'put', :id => 'new_org_document_form' do |f| %>
|
|
<div class="resources">
|
|
<div>
|
|
<input class="postDetailInput fl mr15" style="margin-bottom:15px;" name="org_document_comment[title]" id="document_title" style="resize:none;" onfocus = "$('#org_document_editor').show();" onblur="check_org_title();" value="<%= @org_document.title %>" />
|
|
</div>
|
|
<div id="doc_title_hint"></div>
|
|
<div class="cl"></div>
|
|
<div id="org_document_editor" >
|
|
<div class="mt10">
|
|
<%= kindeditor_tag 'org_document_comment[content]',@org_document.content, :editor_id => 'org_document_description_editor', :height => "150px" %>
|
|
</div>
|
|
<div class="cl"></div>
|
|
|
|
<p id="homework_course_id_span" class="c_red mt5"></p>
|
|
<div class="cl"></div>
|
|
|
|
<div class="mt10">
|
|
<div class="fl" id="topic_attachments">
|
|
<%= render :partial => 'org_document_comments/attachment', :locals => {:container => @org_document} %>
|
|
</div>
|
|
</div>
|
|
<div class="cl"></div>
|
|
<div class="mt5">
|
|
<a href="javascript:void(0);" class="BlueCirBtnMini fr" onclick="org_document_description_editor.sync();$('#new_org_document_form').submit();">确定</a>
|
|
<span class="fr mr10 mt3">或</span>
|
|
<a href="javascript:void(0);" onclick="location=document.referrer;" class="fr mr10 mt3">取消</a>
|
|
<div class="cl"></div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div> |