现共有
<%= student_work.student_works_scores.where(:reviewer_role => 3).count%>
@@ -58,5 +57,20 @@
-
90
+ <% score = student_work.respond_to?("score") ? student_work.score : student_work.final_score - student_work.absence_penalty - student_work.late_penalty%>
+
+ <%= score.nil? ? "--" : format("%.1f",score)%>
+ <% unless score.nil?%>
+
+ 作品最终评分为
+ <%= student_work.final_score%> 分。
+ 迟交扣分
+ <%= student_work.late_penalty%> 分,
+ 缺评扣分
+ <%= student_work.absence_penalty%> 分,
+ 最终成绩为
+ <%= format("%.1f",score)%> 分。
+
+ <% end%>
+
\ No newline at end of file
diff --git a/public/javascripts/course.js b/public/javascripts/course.js
index fc52ef87a..ea9501371 100644
--- a/public/javascripts/course.js
+++ b/public/javascripts/course.js
@@ -881,39 +881,27 @@ function goTopEx() {
$(function(){
//匿评评分提示
- $(".student_score_info").bind("mouseover",function(e){
- //alert($(this).html());
+ $(".student_score_info").live("mouseover",function(){
$(this).find("div").show();
- //$(this).find("div").css("top",e.pageY);
- //$(this).find("div").css("left",e.pageX);
});
- $(".student_score_info").bind("mouseout",function(e){
- //alert($(this).html());
+ $(".student_score_info").live("mouseout",function(){
$(this).find("div").hide();
});
//最终成绩提示
- $(".student_final_scor_info").bind("mouseover",function(e){
- //alert($(this).html());
+ $(".student_final_scor_info").live("mouseover",function(){
$(this).find("div").show();
- //$(this).find("div").css("top",e.pageY);
- //$(this).find("div").css("left",e.pageX);
});
- $(".student_final_scor_info").bind("mouseout",function(e){
- //alert($(this).html());
+ $(".student_final_scor_info").live("mouseout",function(){
$(this).find("div").hide();
});
$("#about_project label").eq(1).remove();
//附件下载提示
- $(".zip_download_alert").bind("mouseover",function(e){
- //alert($(this).html());
+ $(".zip_download_alert").bind("mouseover",function(){
$(this).next("div").show();
- //$(this).next("div").css("top",e.pageY);
- //$(this).next("div").css("left",e.pageX);
});
- $(".zip_download_alert").bind("mouseout",function(e){
- //alert($(this).html());
+ $(".zip_download_alert").bind("mouseout",function(){
$(this).next("div").hide();
});
});