parent
579048ab10
commit
dfc0e56a57
@ -1,54 +1,54 @@
|
||||
<img src="/images/educoder/teach_ex.jpg" width="100%"/>
|
||||
<div class="educontent">
|
||||
<div class="edu-back-white mb30 mt30">
|
||||
<p class="padding20-30 clearfix bor-bottom-greyE">
|
||||
<span class="font-18 fl color-grey-3">教学案例</span>
|
||||
<%= link_to '发布案例', new_library_path, class: 'white-btn edu-filter-btn-blue fr mr10 mt8', style: 'color: #4CACFF' %>
|
||||
</p>
|
||||
<div class="clearfix pl30 pr30">
|
||||
<% if User.current.try(:logged?) %>
|
||||
<ul class="fl library_nav mt20">
|
||||
<li class="<%= params[:type] == 'mine' ? '' : 'active' %>">
|
||||
<%= link_to '全部', libraries_path(search: params[:search]), remote: true %>
|
||||
</li>
|
||||
<li class="<%= params[:type] == 'mine' ? 'active' : '' %>">
|
||||
<%= link_to '我的', libraries_path(search: params[:search], type: 'mine'), remote: true %>
|
||||
</li>
|
||||
</ul>
|
||||
<% end %>
|
||||
<div class="edu-position fr mt12">
|
||||
<%= hidden_field_tag(:type, params[:type]) %>
|
||||
<input class="winput-300-35 panel-box-sizing" placeholder="输入教学案例标题、编号进行检索" type="text" id="search_name">
|
||||
<a href="javascript:void(0);" class="edu-btn-search font-16 color-grey" id="search"><i class="fa fa-search"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="library-list-container">
|
||||
<%= render partial: 'library_list' %>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
$(function(){
|
||||
$(".library_nav").on("click","li",function(){
|
||||
$(".library_nav li").removeClass("active");
|
||||
$(this).addClass("active");
|
||||
});
|
||||
|
||||
var searchFunc = function() {
|
||||
var search = $("#search_name").val();
|
||||
var type = $("input[name='type']").val();
|
||||
$.ajax({
|
||||
url: "<%= libraries_path %>",
|
||||
dataType: 'script',
|
||||
data: {search: search, type: type}
|
||||
});
|
||||
};
|
||||
|
||||
$("#search").live("click", searchFunc);
|
||||
$('#search_name').bind('keypress',function(event) {
|
||||
if (event.keyCode == "13") {
|
||||
searchFunc();
|
||||
}
|
||||
});
|
||||
})
|
||||
<img src="/images/educoder/teach_ex.jpg" width="100%"/>
|
||||
<div class="educontent">
|
||||
<div class="edu-back-white mb30 mt30">
|
||||
<p class="padding20-30 clearfix bor-bottom-greyE">
|
||||
<span class="font-18 fl color-grey-3">教学案例</span>
|
||||
<%= link_to '发布案例', new_library_path, class: 'white-btn edu-filter-btn-blue fr mr10 mt8', style: 'color: #4CACFF' %>
|
||||
</p>
|
||||
<div class="clearfix pl30 pr30">
|
||||
<% if User.current.try(:logged?) %>
|
||||
<ul class="fl library_nav mt20">
|
||||
<li class="<%= params[:type] == 'mine' ? '' : 'active' %>">
|
||||
<%= link_to '全部', libraries_path(search: params[:search]), remote: true %>
|
||||
</li>
|
||||
<li class="<%= params[:type] == 'mine' ? 'active' : '' %>">
|
||||
<%= link_to '我的', libraries_path(search: params[:search], type: 'mine'), remote: true %>
|
||||
</li>
|
||||
</ul>
|
||||
<% end %>
|
||||
<div class="edu-position fr mt12 mb10">
|
||||
<%= hidden_field_tag(:type, params[:type]) %>
|
||||
<input class="winput-300-35 panel-box-sizing" placeholder="输入教学案例标题、编号进行检索" type="text" id="search_name">
|
||||
<a href="javascript:void(0);" class="edu-btn-search font-16 color-grey" id="search"><i class="fa fa-search"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="library-list-container">
|
||||
<%= render partial: 'library_list' %>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
$(function(){
|
||||
$(".library_nav").on("click","li",function(){
|
||||
$(".library_nav li").removeClass("active");
|
||||
$(this).addClass("active");
|
||||
});
|
||||
|
||||
var searchFunc = function() {
|
||||
var search = $("#search_name").val();
|
||||
var type = $("input[name='type']").val();
|
||||
$.ajax({
|
||||
url: "<%= libraries_path %>",
|
||||
dataType: 'script',
|
||||
data: {search: search, type: type}
|
||||
});
|
||||
};
|
||||
|
||||
$("#search").live("click", searchFunc);
|
||||
$('#search_name').bind('keypress',function(event) {
|
||||
if (event.keyCode == "13") {
|
||||
searchFunc();
|
||||
}
|
||||
});
|
||||
})
|
||||
</script>
|
Loading…
Reference in new issue