|
|
|
@ -63,11 +63,12 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div class="orgRow mb10 mt5"><span style="margin-left:38px;" >公开 : </span>
|
|
|
|
|
<input type="checkbox" name="organization[is_public]" <%= @organization.is_public ? 'checked': ''%> class="ml3" />
|
|
|
|
|
<input type="checkbox" id="is_public" onblur="disable_down($(this), $('#allow_download'),$('#allow_down_hint'));" name="organization[is_public]" <%= @organization.is_public ? 'checked': ''%> class="ml3" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="orgRow mb10 mt5"><span style="margin-left:10px;">下载支持 : </span>
|
|
|
|
|
<input type="checkbox" style="margin-top:5px;" name="organization[allow_guest_download]" <%= @organization.allow_guest_download ? 'checked': ''%> class="ml3" />
|
|
|
|
|
<input id="allow_download" type="checkbox" style="margin-top:5px;" <%= @organization.is_public? ? "":"DISABLED" %> name="organization[allow_guest_download]" <%= @organization.allow_guest_download ? 'checked': ''%> class="ml3" />
|
|
|
|
|
<span>允许游客下载</span>
|
|
|
|
|
<span class="c_green f12" id="allow_down_hint"><%= @organization.is_public? ? "" : "(私有组织不允许游客下载资源)" %></span>
|
|
|
|
|
</div>
|
|
|
|
|
<a href="javascript:void(0);" class="saveBtn ml80 db fl" onclick="update_org(<%=@organization.id %>);">保存</a>
|
|
|
|
|
<% end %>
|
|
|
|
@ -187,4 +188,13 @@
|
|
|
|
|
$("#apply_hint").text("子域名命名不规范,只能包含字母、数字和下划线,请重新输入");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// $(document).ready(function(){
|
|
|
|
|
// if ( $("#is_public").attr("checked") != true){
|
|
|
|
|
// alert($(this).attr("checked"));
|
|
|
|
|
// $("#allow_download").attr("checked", false);
|
|
|
|
|
// $("#allow_download").attr("disabled", true);
|
|
|
|
|
// $("#allow_down_hint").html("");
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
</script>
|