110 lines
5.0 KiB
Plaintext
110 lines
5.0 KiB
Plaintext
<%= javascript_include_tag 'bootstrap'%>
|
|
<%= stylesheet_link_tag 'project' %>
|
|
<%= stylesheet_link_tag 'leftside' %>
|
|
<%= javascript_include_tag 'attachments'%>
|
|
<!--<script type="text/css">-->
|
|
<!--html,body{ overflow-y:scroll;}-->
|
|
<!--html,body{ overflow:scroll; min-height:101%;}-->
|
|
<!--html{ overflow:-moz-scrollbars-vertical;}-->
|
|
<!--</script>-->
|
|
<script>
|
|
function remote_get_resources(user_id,type){
|
|
|
|
}
|
|
$(document).ready(function(){
|
|
$(".resource-switch").click(function(){
|
|
$(".resource-switch").children().removeClass("resource-tab-active");
|
|
$(this).children().addClass("resource-tab-active");
|
|
});
|
|
});
|
|
function remote_search(){
|
|
$("#resource_search_form").submit();
|
|
}
|
|
|
|
function show_public_resource(){
|
|
$("#resource_remote").html('<%= escape_javascript( render :partial => 'user_resource_info' ,:locals => { :tpye => 6}) %>');
|
|
}
|
|
|
|
function show_public_resource(){
|
|
$("#resource_remote").html('<%= escape_javascript( render :partial => 'user_resource_info' ,:locals => { :tpye => 1}) %>');
|
|
}
|
|
|
|
function closeModal()
|
|
{
|
|
hideModal($(".uploadBoxContainer"));
|
|
}
|
|
function closePopUp(){
|
|
hideModal($(".boxContainer"));
|
|
}
|
|
|
|
function check_files(){
|
|
return $("#attachments_fields").children().length == 0;
|
|
}
|
|
|
|
function submit_files(){
|
|
$("#upload_form").submit();
|
|
}
|
|
|
|
function check_des(event){
|
|
if($(".sectionContent").find('input[type="radio"]:checked').length <= 0){
|
|
event.preventDefault();
|
|
$(".orgDirection").text('目标地址组织不能为空')
|
|
return false;
|
|
}else if($(".columnContent").find('input[type="radio"]:checked').length <= 0){
|
|
event.preventDefault();
|
|
$(".orgDirection").text('目标地址栏目不能为空')
|
|
return false;
|
|
}else{
|
|
return true;
|
|
}
|
|
}
|
|
</script>
|
|
<div>
|
|
<ul class="resource-banner">
|
|
<li class="fl resource-switch">
|
|
<a href="<%= user_resource_user_path(@user, :type => '6', :status => @status) %>" class="resource-tab resource-tab-active" id="public_resource_list" data-remote="true">公共资源</a>
|
|
</li>
|
|
<li class="fl resource-switch">
|
|
<a href="<%= user_resource_user_path(@user, :type => '1', :status => @status) %>" class="resource-tab" id="my_resource_list" data-remote="true">我的资源</a>
|
|
</li>
|
|
<li class="fl w770 border-bottom h34"> </li>
|
|
<li class="fr resource-banner-li border-bottom h34">
|
|
<ul class="resourcesSelect">
|
|
<li class="resourcesSelected"><a href="javascript:void(0);" class="resourcesIcon"></a>
|
|
<ul class="resourcesType">
|
|
<li>
|
|
<a href="<%= user_resource_user_path(:id => @user.id, :type => @type, :status => 1)%>" id="resource_type_all" class="resourcesTypeAll resourcesGrey" data-method="get" data-remote="true">全部 </a>
|
|
</li>
|
|
<li>
|
|
<a href="<%= user_resource_user_path(:id => @user.id, :type => @type, :status => 2) %>" id="resource_type_course" class="homepagePostTypeAssignment postTypeGrey'" data-method="get" data-remote="true">课程资源 </a>
|
|
<%#= link_to '课程资源' ,user_resource_user_path(:id => @user.id, :type => 2), id="resource_type_course", :remote => true, :method => 'get', :class=> 'homepagePostTypeAssignment postTypeGrey' %>
|
|
</li>
|
|
<li>
|
|
<a href="<%= user_resource_user_path(:id => @user.id, :type => @type, :status => 3) %>" id="resource_type_project" class="homepagePostTypeQuiz postTypeGrey" data-method="get" data-remote="true">项目资源 </a>
|
|
<%#= link_to '项目资源' ,user_resource_user_path(:id => @user.id, :type => 3), id="resource_type_project", :remote => true, :method => 'get', :class => 'homepagePostTypeQuiz postTypeGrey' %>
|
|
</li>
|
|
<li>
|
|
<a href="<%= user_resource_user_path(:id => @user.id, :type => @type, :status => 5) %>" id="resource_type_user" class="resourcesTypeUser resourcesGrey" data-method="get" data-remote="true">用户资源 </a>
|
|
<%#= link_to '用户资源' ,user_resource_user_path(:id=>@user.id,:type=>5), id="resource_type_user", :remote=>true,:method => 'get', :class=>'resourcesTypeUser resourcesGrey' %>
|
|
</li>
|
|
<li>
|
|
<a href="<%= user_resource_user_path(:id => @user.id, :type => @type, :status => 4) %>" id="resource_type_file" class="resourcesTypeAtt resourcesGrey" data-method="get" data-remote="true">附件 </a>
|
|
<%#= link_to '附件' ,user_resource_user_path(:id=>@user.id,:type=>4), id="resource_type_file", :remote=>true,:method => 'get',:class=>'resourcesTypeAtt resourcesGrey' %>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<div class="cl"></div>
|
|
</ul>
|
|
<div class="cl"></div>
|
|
<div id ="resource_remote">
|
|
<%= render :partial => 'user_resource_info' %>
|
|
</div>
|
|
</div>
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
|