给排序设置正确的路径

This commit is contained in:
gonglexin 2014-10-30 20:32:35 +08:00
parent f45a9cc6fb
commit f3d8aebfe4
2 changed files with 15 additions and 8 deletions

View File

@ -1892,5 +1892,16 @@ module ApplicationHelper
content_tag(:ul, logos.join("").html_safe, :class => ul_class.to_s).html_safe content_tag(:ul, logos.join("").html_safe, :class => ul_class.to_s).html_safe
end end
def sort_homework_path(bid, sort)
case self.action_name
when 'get_not_batch_homework', 'show_courseEx'
get_not_batch_homework_homework_attach_path(bid, sort: sort)
when 'get_batch_homeworks'
get_batch_homeworks_homework_attach_path(bid, sort: sort)
when 'get_homeworks'
get_homeworks_homework_attach_path(bid, sort: sort)
else
'#'
end
end
end end

View File

@ -7,13 +7,9 @@
</font>) </font>)
</span><span class="fr"> </span><span class="fr">
按&nbsp; 按&nbsp;
<a href="#"> <%= link_to l(:label_work_rating), sort_homework_path(@bid, 'socre'), {:remote => true}%>
<%= l(:label_work_rating)%>
</a>
&nbsp;/&nbsp; &nbsp;/&nbsp;
<a href="#"> <%= link_to l(:label_time), sort_homework_path(@bid, 'time'), {:remote => true}%>
<%= l(:label_time) %>
</a>
&nbsp;<%= l(:label_sort) %> &nbsp;<%= l(:label_sort) %>
</span> </span>
</div> </div>