在用户与超级管理员的私信窗口,增加发送问题页网址的文字说明

dev_haigong
cxt 6 years ago
parent 4eeb6f1fcc
commit 432fe28c54

@ -49,6 +49,7 @@
<div class="cl"></div>
<div class="clearfix mt10">
<div nhname='toolbar_container_<%= @target_user.id%>' class="mb10 clearfix fl"></div>
<span class="fl ml5 color-orange none font-12" id="new_message_notice_<%= @target_user.id %>">在问题反馈时,请同时发送问题发生页的网址链接,以便我们高效的为您服务</span>
<a id="new_message_submit_btn_<%= @target_user.id%>" style="display: none" href="javascript:void(0)" class="fr task-btn task-btn-orange">回复</a>
</div>

@ -379,6 +379,7 @@ function sd_create_editor_from_message_data(id){
params.toolbar_container = $("div[nhname='toolbar_container_" + id + "']", params.div_form);
params.cancel_btn = $("#new_message_cancel_btn_" + id);
params.submit_btn = $("#new_message_submit_btn_" + id);
params.notice_msg = $("#new_message_notice_" + id);
params.height = height;
params.width = width;
if (params.textarea.data('init') == undefined) {
@ -432,6 +433,7 @@ function sd_create_message_editor(params){
params.toolbar_container.hide();
this.resize("100%", "30px");
params.submit_btn.hide();
params.notice_msg.hide();
}
$('#mini_comment_section').height('auto');
@ -457,6 +459,7 @@ function sd_create_message_editor(params){
$(".private-list").css("max-height",$("#dialogPanel").height());
params.submit_btn.show();
params.notice_msg.show();
$('#mini_comment_section').height('240px')
},

Loading…
Cancel
Save