67 lines
2.3 KiB
Plaintext
67 lines
2.3 KiB
Plaintext
<style>
|
||
textarea:focus {
|
||
border: #d5dee9 1px solid;
|
||
}
|
||
</style>
|
||
|
||
<script type="text/javascript" language="javascript">
|
||
function clearInfo(id, content) {
|
||
var text = $('#' + id);
|
||
if (text.val() == content) {
|
||
$('#' + id).val('');
|
||
}
|
||
}
|
||
|
||
function showInfo(id, content) {
|
||
var text = $('#' + id);
|
||
if (text.val() == '') {
|
||
$('#' + id).val(content);
|
||
}
|
||
}
|
||
|
||
function submit1(is_teacher)
|
||
{
|
||
if($("#stars_value").val() == "0"){alert("您还没有打分");return;}
|
||
if(!is_teacher&&$("#new_form_user_message").val() == ""){alert("您还没有填写评语");return;}
|
||
$('#jours_submit').parent().submit();
|
||
}
|
||
</script>
|
||
|
||
<%= form_for('new_form', :remote => true, :method => :post,
|
||
:url => {:controller => 'homework_attach',
|
||
:action => 'addjours',
|
||
:homework_id => homework_attach.id,
|
||
:cur_page => cur_page,
|
||
:cur_type => cur_type,
|
||
:is_anonymous_comments => @is_anonymous_comments,
|
||
:is_teacher => @is_teacher
|
||
}) do |f|%>
|
||
<!-- 打分 -->
|
||
<div class="ping_star" id="star_score">
|
||
<% if @is_anonymous_comments || @is_teacher %>
|
||
<!-- 学生匿评或者教师评价 -->
|
||
<%= l(:label_work_rating) %>:
|
||
<%= render :partial => 'show_star',:locals => {start_score:m_score} %>
|
||
<% end %>
|
||
</div>
|
||
<div class="cl"></div>
|
||
<!-- 打分js结束 -->
|
||
|
||
<% if User.current.logged? %>
|
||
<%= f.text_area 'user_message', :rows => 3, :cols => 65,
|
||
:style => "resize: none;", :class => 'noline', :placeholder => l(:text_caracters_maximum,:count=>250),
|
||
:maxlength => 250 %>
|
||
<%= f.text_field :reference_user_id, :style=>"display:none"%>
|
||
<div style="float:right">
|
||
<a href="#" class="ping_sub1" id="jours_submit" onclick="submit1(<%= @is_teacher%>);">
|
||
<%= l(:label_confirmation) %>
|
||
</a>
|
||
</div>
|
||
<% else %>
|
||
<div style="font-size: 14px;margin:10px;text-align: center">
|
||
<%= l(:label_user_login_tips) %>
|
||
<%= link_to l(:label_user_login_new), signin_path %>
|
||
</div>
|
||
<% end %>
|
||
<% end %>
|