9 lines
371 B
Plaintext
9 lines
371 B
Plaintext
<% if @statue == 1%>
|
|
alert('启动成功');
|
|
$("#<%= @bid.id %>_start_anonymous_comment").html('<%= link_to "关闭匿评", stop_anonymous_comment_bid_path(@bid), remote: true %>');
|
|
<% elsif @statue == 2 %>
|
|
alert('启动失败\n作业总数大于4份时才能启动匿评');
|
|
<% elsif @statue == 3%>
|
|
alert("已开启匿评,请务重复开启");
|
|
<% end %>
|