|
|
|
@ -324,7 +324,7 @@
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div id="large_panel" class="large_panel">
|
|
|
|
|
<% if @competition.competition_stages.count > 0 %>
|
|
|
|
|
<% @competition.competition_stages.each do |stage| %>
|
|
|
|
|
<% @competition.competition_stages.each_with_index do |stage, index| %>
|
|
|
|
|
<%= form_tag(admins_competition_competition_stage_path(competition_id: @competition.id, id: stage.id), method: :put, class: 'stage_update_form flex-1', remote: true) do %>
|
|
|
|
|
<div class="large_panel_part" attr_line="1">
|
|
|
|
|
<div class="row d-flex">
|
|
|
|
@ -345,42 +345,44 @@
|
|
|
|
|
<a href="javascript:void(0)" class="btn btn-outline-primary export-action ml20">保存</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="small_panel_1" class="small_panel">
|
|
|
|
|
<div class="row d-flex small_panel_item" attr_line="sub_1_1" count="1">
|
|
|
|
|
<span class="col-1 mt-2 subName">第1阶段</span>
|
|
|
|
|
<div class="flex-1">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<span class="mt-2 ml20">有效时间:</span>
|
|
|
|
|
<div class="col-2 no_padding input_middle">
|
|
|
|
|
<input class="use_time_begin_1_1 form-control" placeholder="有效开始时间"/>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="mt-2">~</span>
|
|
|
|
|
<div class="col-2 no_padding input_middle">
|
|
|
|
|
<input class="use_time_end_1_1 form-control" placeholder="有效结束时间"/>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="col-2 text-right mt-2 no_padding">任务完成要求:</span>
|
|
|
|
|
<div class="col-1 no_padding input_small">
|
|
|
|
|
<input type="number" class="form-control" name="task_require_small_1_1"/>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="mt-2 ml10 mr10">/</span>
|
|
|
|
|
<div class="col-1 no_padding input_small">
|
|
|
|
|
<input type="number" class="form-control task_all" onchange="change_total(this)" name="task_require_all_1_1"/>
|
|
|
|
|
</div>
|
|
|
|
|
<span class=" mt-2">(总任务)</span>
|
|
|
|
|
<span class="col-1 text-right mt-2 no_padding">成绩来源:</span>
|
|
|
|
|
<div class="col-2 no_padding input_middle">
|
|
|
|
|
<select class="form-control" name="source_1_1">
|
|
|
|
|
<option>经验值</option>
|
|
|
|
|
<option>预测准确率</option>
|
|
|
|
|
</select>
|
|
|
|
|
<div id="small_panel_<%= index + 1 %>" class="small_panel">
|
|
|
|
|
<% stage.competition_stage_sections.each_with_index do |section, j| %>
|
|
|
|
|
<div class="row d-flex small_panel_item" attr_line="sub_1_1" count="<%= j + 1 %>">
|
|
|
|
|
<span class="col-1 mt-2 subName">第<%= j + 1 %>阶段</span>
|
|
|
|
|
<div class="flex-1">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<span class="mt-2 ml20">有效时间:</span>
|
|
|
|
|
<div class="col-2 no_padding input_middle">
|
|
|
|
|
<%= text_field_tag 'stage[][start_time]', section.start_time&.strftime('%Y-%m-%d %H:%M'), autocomplete: 'off', class: 'section_start_time form-control', placeholder: '有效开始时间' %>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="mt-2">~</span>
|
|
|
|
|
<div class="col-2 no_padding input_middle">
|
|
|
|
|
<%= text_field_tag 'stage[][end_time]', section.end_time&.strftime('%Y-%m-%d %H:%M'), autocomplete: 'off', class: 'section_end_time form-control', placeholder: '有效结束时间' %>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="col-2 text-right mt-2 no_padding">任务完成要求:</span>
|
|
|
|
|
<div class="col-1 no_padding input_small">
|
|
|
|
|
<input type="number" class="form-control" name="stage[][end_time]"/>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="mt-2 ml10 mr10">/</span>
|
|
|
|
|
<div class="col-1 no_padding input_small">
|
|
|
|
|
<input type="number" class="form-control task_all" onchange="change_total(this)" name="task_require_all_1_1"/>
|
|
|
|
|
</div>
|
|
|
|
|
<span class=" mt-2">(总任务)</span>
|
|
|
|
|
<span class="col-1 text-right mt-2 no_padding">成绩来源:</span>
|
|
|
|
|
<div class="col-2 no_padding input_middle">
|
|
|
|
|
<select class="form-control" name="source_1_1">
|
|
|
|
|
<option>经验值</option>
|
|
|
|
|
<option>预测准确率</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row mt-2" id="task_Input_sub_1_1"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row mt-2" id="task_Input_sub_1_1"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<span>
|
|
|
|
|
<span>
|
|
|
|
|
<a href="javascript:void(0)" class="btn btn-default ml20 small_panel_item_del">删除</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|