|
|
|
@ -1,3 +1,19 @@
|
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
|
function selectChange(obj)
|
|
|
|
|
{
|
|
|
|
|
if(obj.value=="其他")
|
|
|
|
|
{
|
|
|
|
|
//document.getElementById("a").style.display = ""
|
|
|
|
|
$("#other_span").show();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$("#other_span").hide();
|
|
|
|
|
$("#other_input").val("");
|
|
|
|
|
//document.getElementById("a").style.display = "none"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<%= form_for(softapplication) do |f| %>
|
|
|
|
|
|
|
|
|
|
<% if softapplication.errors.any? %>
|
|
|
|
@ -17,7 +33,7 @@
|
|
|
|
|
<span><%= l(:label_work_name) %></span>
|
|
|
|
|
<span class="contest-star"> * </span>: <td ><%= f.text_field :name, :required => true, :size => 60, :style => "width:400px;" %></td>
|
|
|
|
|
<span><%= l(:label_softapplication_name_condition)%></span>
|
|
|
|
|
</tr></ br>
|
|
|
|
|
</tr><br/>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
@ -25,16 +41,24 @@
|
|
|
|
|
<span><%= l(:label_running_platform) %></span>
|
|
|
|
|
<span class="contest-star"> * </span>: <td style="width: 100px"><%= f.text_field :android_min_version_available, :required => true, :size => 60, :style => "width:400px;" %></td>
|
|
|
|
|
|
|
|
|
|
</tr></ br>
|
|
|
|
|
</tr>
|
|
|
|
|
<br/>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|
<tr style="width:800px;">
|
|
|
|
|
<span><%= l(:label_work_type) %></span>
|
|
|
|
|
|
|
|
|
|
<span class="contest-star"> * </span>: <td style="width: 100px"><%= f.text_field :app_type_name, :required => true, :size => 60, :style => "width:400px;" %></td>
|
|
|
|
|
|
|
|
|
|
</tr></ br>
|
|
|
|
|
<span class="contest-star"> * </span>:
|
|
|
|
|
<td style="width: 100px">
|
|
|
|
|
<%#= f.text_field :app_type_name, :required => true, :size => 60, :style => "width:400px;" %>
|
|
|
|
|
<%= f.select :app_type_name,work_type_opttion, {},{:style => "width:410px;",:onchange => "selectChange(this)"} %>
|
|
|
|
|
<span style="font-size: 10px;display: none" id="other_span">
|
|
|
|
|
<%#= f.text_field :other_input, :required => true, :size => 60, :style => "width:100px;" %>
|
|
|
|
|
<input type="text" style="width: 100px;" id="other_input" name = "other_input"/>
|
|
|
|
|
</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<br/>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
@ -42,7 +66,8 @@
|
|
|
|
|
<span><%= l(:label_work_description) %></span>
|
|
|
|
|
<span class="contest-star"> * </span>: <td style="width: 100px"><%= f.text_field :description, :required => true, :size => 60, :style => "width:400px;" %></td>
|
|
|
|
|
<span><%= l(:label_softapplication_description_condition)%></span>
|
|
|
|
|
</tr></ br>
|
|
|
|
|
</tr>
|
|
|
|
|
<br/>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
@ -50,7 +75,8 @@
|
|
|
|
|
<span><%= l(:label_softapplication_developers) %></span>
|
|
|
|
|
<span class="contest-star"> * </span>: <td style="width: 100px"><%= f.text_field :application_developers, :required => true, :size => 60, :style => "width:400px;" %></td>
|
|
|
|
|
|
|
|
|
|
</tr></ br>
|
|
|
|
|
</tr>
|
|
|
|
|
<br/>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
@ -58,7 +84,8 @@
|
|
|
|
|
<span><%= l(:label_work_deposit_project) %>:</span>
|
|
|
|
|
<span style="padding-left: 4px"><%= select_tag 'project', options_for_select(select_option_helper(@option)), :name => 'project', :class => 'grayline3' %></span>
|
|
|
|
|
<span><%#= link_to '创建项目', new_project_path(course: 0, project_type: 0), :target=>'_blank'%></span>
|
|
|
|
|
</tr><br/>
|
|
|
|
|
</tr>
|
|
|
|
|
<br/>
|
|
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|