个人资料页面学校选择框更改
This commit is contained in:
parent
3962a9d541
commit
c893227609
|
@ -108,22 +108,23 @@
|
||||||
<!-- added by Wen -->
|
<!-- added by Wen -->
|
||||||
|
|
||||||
|
|
||||||
<p style="width:357px;padding-left: 26px;">
|
<p style="padding-left: 26px;">
|
||||||
<% unless User.current.user_extensions.school.nil? %>
|
<% unless User.current.user_extensions.school.nil? %>
|
||||||
<%= l(:field_occupation) %> <span class="required">*</span><%= select_tag "province", options_from_collection_for_select(School.find_by_sql("select distinct province from schools"), :province, :province, User.current.user_extensions.school.province), :onclick => "get_options(this.value)" %>
|
|
||||||
<input id="occupation" name="occupation" type="hidden" value="<%=User.current.user_extensions.school.id%>" />
|
<%= l(:field_occupation) %> <span class="required">*</span>
|
||||||
<input id="occupation_name" type="text" value="<%=User.current.user_extensions.school.name%>" readonly />
|
|
||||||
|
<input id="province" name="province" type="text" value="<%=User.current.user_extensions.school.province%>" readonly />
|
||||||
|
<input id="occupation" name="occupation" type="hidden" value="<%=User.current.user_extensions.school.id%>" />
|
||||||
|
<input id="occupation_name" type="text" value="<%=User.current.user_extensions.school.name%>" readonly />
|
||||||
|
|
||||||
|
|
||||||
<!--<%= select_tag "occupation",
|
|
||||||
options_for_select([[User.current.user_extensions.school.name, User.current.user_extensions.school.id]]) %>-->
|
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= l(:field_occupation) %> <span class="required">*</span><%= select_tag "province", options_from_collection_for_select(School.find_by_sql("select distinct province from schools"), :province, :province), :onclick => "get_options(this.value)" %>
|
|
||||||
|
<%= l(:field_occupation) %> <span class="required">*</span>
|
||||||
|
<input id="province" name="province" type="text" value="请单击选择省份及学校" readonly >
|
||||||
|
<input id="occupation" name="occupation" type="hidden" />
|
||||||
|
<input id="occupation_name" type="text" readonly />
|
||||||
|
|
||||||
<input id="occupation" name="occupation" type="hidden" />
|
|
||||||
<input id="occupation_name" type="text" readonly />
|
|
||||||
<% end %>
|
<% end %>
|
||||||
<!-- <input id="occupation" readonly />-->
|
<!-- <input id="occupation" readonly />-->
|
||||||
</p>
|
</p>
|
||||||
|
@ -131,6 +132,18 @@
|
||||||
<div id="WOpenWindow">
|
<div id="WOpenWindow">
|
||||||
<a class="modal_close" href="#"></a>
|
<a class="modal_close" href="#"></a>
|
||||||
<h2>学校列表</h2>
|
<h2>学校列表</h2>
|
||||||
|
<div class="pcontent">
|
||||||
|
<ul id="provincelist" class="school_list">
|
||||||
|
<% @ss = School.find_by_sql("select distinct province from schools") %>
|
||||||
|
<% @ss.each do |s| %>
|
||||||
|
<li style="width: 15%; float: left;">
|
||||||
|
<a style="cursor: pointer;" onclick = "get_options('<%= s.province %>')"><%= s.province %>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<hr/>
|
||||||
<div class="content" style="font-size: 13px">
|
<div class="content" style="font-size: 13px">
|
||||||
<ul id="schoollist" class="school_list">
|
<ul id="schoollist" class="school_list">
|
||||||
|
|
||||||
|
|
|
@ -227,17 +227,15 @@ body {
|
||||||
display: none;
|
display: none;
|
||||||
padding-bottom: 2px;
|
padding-bottom: 2px;
|
||||||
width: 1000px;
|
width: 1000px;
|
||||||
height: 500px;
|
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -202px;
|
margin-left: -202px;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 200px;
|
top: 200px;
|
||||||
overflow: scroll;
|
|
||||||
}
|
}
|
||||||
#WOpenWindow .school_list{
|
#WOpenWindow .school_list{
|
||||||
width:1000px;
|
width: 900px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -259,6 +257,12 @@ body {
|
||||||
}
|
}
|
||||||
#WOpenWindow .content{
|
#WOpenWindow .content{
|
||||||
width: 1000px;
|
width: 1000px;
|
||||||
|
height: 220px;
|
||||||
|
overflow: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
#WOpenWindow .pcontent{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue