老师评阅作品时可以不写评语,只有学生匿评的时候才强制写评语

This commit is contained in:
cxt 2016-01-19 09:55:28 +08:00
parent 7f7d0ac6f7
commit 6e582fa631
1 changed files with 11 additions and 7 deletions

View File

@ -23,6 +23,7 @@
<% end%> <% end%>
<script type="text/javascript"> <script type="text/javascript">
function score_submit(id){ function score_submit(id){
<% if !@is_teacher %>
if ($.trim($('#score_comment_'+id).val()) == "") { if ($.trim($('#score_comment_'+id).val()) == "") {
$('#hint_message_'+id).html("为了对其他学生的作品负责,请您务必填写评语"); $('#hint_message_'+id).html("为了对其他学生的作品负责,请您务必填写评语");
$("#hint_message_"+id).css('color','#ff0000'); $("#hint_message_"+id).css('color','#ff0000');
@ -31,5 +32,8 @@
$("#work_submit_"+id).parent().parent().submit(); $("#work_submit_"+id).parent().parent().submit();
$('#about_hwork_'+id).html(''); $('#about_hwork_'+id).html('');
} }
<% else %>
$("#work_submit_"+id).parent().parent().submit();
<% end %>
} }
</script> </script>