📄 modifyuserinfo.jsp
字号:
<tr>
<td align="right" bgcolor="#f5f5f5" style="font-weight:bolder;"><font size="2">省份:</font></td>
<td align="left" bgcolor="#FFFFFF" >
<div class="ping1" style="display:inline;">
<select name="province" id="province" onclick="setCitys(this.value)">
<option value="">请选择..</option>
<%
if (country_Map != null && country_Map.size() > 0)
{
Iterator it = country_Map.entrySet().iterator();
while (it.hasNext()) {
Map.Entry entry = (Map.Entry) it.next();
Object key = entry.getKey();
Object value = entry.getValue();
%>
<option value=<%=key%>><%=value%></option>
<%
}
}
%>
</select>
</div>
<font style="font-weight:bolder;" size="2">归属城市:</font>
<div class="ping1" style="display:inline;">
<select name="eparchy_code" id="eparchy_code" style="display:inline" onclick="setAreas(this.value)">
<option value="">请选择..</option>
</select>
<font style="font-weight:bolder;" size="2">区/县:</font>
<select name="city" id="city" style="display:inline">
<option value="">请选择..</option>
</select>
</div>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
证件类别: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<select name=pspt_type_code>
<%
if (creditList != null && creditList.size() > 0) {
for (int i = 0; i < creditList.size(); i++) {
HashMap map = (HashMap) creditList.get(i);
String value = map.get("para_code1").toString();
String name = map.get("para_code2").toString();
%>
<option value="<%=value%>">
<%=name%>
</option>
<%
}
}
%>
</select>
</td>
</tr>
<tr style="display:none">
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
证件号码: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name=pspt_id type=text value="<%=pspt_id%>" size="30" <%=enable%>>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
证件有效期: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name="pspt_end_date" type="text" id="pspt_end_date"
onfocus="setday(this);" value="<%=pspt_end_date%>">
(yyyy-MM-dd)
</td>
</tr>
<tr style="display: none">
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
证件地址: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name=pspt_addr type=text value=<%=pspt_addr%> size="40" <%=enable%>>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
性别: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<select name=sex>
<option value=0>
男
</option>
<option value=1>
女
</option>
</select>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
生日: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name="birthday" type="text" id="birthday"
onfocus="setday(this);" value="<%=birthday%>" size="20" maxlength="10">
(yyyy-MM-dd)
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
籍贯: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input type=text name=local_native_code
value="<%=local_native_code%>" <%=enable%>>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
民族: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<select name=folk_code>
<%
if (folkList != null && folkList.size() > 0) {
for (int i = 0; i < folkList.size(); i++) {
HashMap map = (HashMap) folkList.get(i);
String value = map.get("para_code1").toString();
String name = map.get("para_code2").toString();
%>
<option value="<%=value%>">
<%=name%>
</option>
<%
}
}
%>
</select>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
联系电话: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input type=text name="phone" id="phone" value="<%=phone%>" <%=enable%> size="30" maxlength="15">
<input type="hidden" name="group_contact_phone" id="group_contact_phone" value="">
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
传真: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input type=text name=fax_nbr value="<%=fax%>" <%=enable%> size="30" maxlength="15">
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
通信地址: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input type=text name=post_addr value="<%=post_addr%>" <%=enable%> size="30" maxlength="40">
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
邮政编码: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input type=text name=post_code value="<%=post_code%>" <%=enable%> size="10" maxlength="6">
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
家庭地址: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name=home_addr type=text value="<%=home_addr%>" size="30" <%=enable%>>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
电子邮件: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name=email type=text value="<%=email%>" size="30" <%=enable%>>
<input name="cust_name" id="cust_name" type="hidden" value="<%=cust_name%>">
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
QQ: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input type=text name=qq value="<%=qq%>" <%=enable%> size="12" maxlength="12">
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
Blog: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name=blog type=text value="<%=blog%>" size="30" <%=enable%>>
</td>
</tr>
<tr style="display: none">
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
工作单位: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input type="hidden" name=work_name value="">
</td>
</tr>
<tr style="display: none">
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
工作部门: </td>
<td style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<select name=work_depart>
</select>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
职位: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<input name=job type=text value="<%=job%>" size="30">
<input type=hidden name="up_org_id" id="up_org_id" value="<%=up_org_id%>">
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
教育程度: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>
<select name=educate_degree_code>
<%
if (degreeList != null && degreeList.size() > 0) {
for (int i = 0; i < degreeList.size(); i++) {
HashMap map = (HashMap) degreeList.get(i);
String value = map.get("para_code1").toString();
String name = map.get("para_code2").toString();
%>
<option value="<%=value%>">
<%=name%>
</option>
<%
}
}
%>
</select>
</td>
</tr>
<tr>
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
婚姻: </td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;" align=left>
<select name=marriage>
<%
if(marriage=="1"){
%>
<option value=1>已婚</option>
<%
}else{
%>
<option value=0>未婚</option>
<%
}
%>
<option value=0>
未婚
</option>
<option value=1>
已婚
</option>
</select>
</td>
</tr>
<input type="hidden" name="city_code" id="city_code" value="">
<tr style="display:none">
<td
align=right
style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px;">
社会保障号:</td>
<td
style="background-color:#ffffff; color:#000000; font-size:12px;padding:5px;"
align=left>oornam<input type=text name=community_id value="<%=community_id%>">
<br><br><br><br><br><br></td>
</tr>
<%if(view ==null || view.equals("")){%>
<tr>
<td
style="background-color:#ffffff; color:#000000; font-size:12px; padding:5px;"
align=center colspan=2>
<INPUT id=advcheck name=advshow type=checkbox value=0
onclick=check_none(Userform)>
以上资料正确无误。
<input type=hidden name=rsrv_num1 value=0>
</td>
</tr>
<tr>
<td style="background-color:#f6f6f6; color:#000000; font-weight:bold; font-size:12px; padding-top:10px;padding-bottom:10px;" align=center colspan=2>
<input class="tjan" name=submit1 type=button value="" disabled=true onclick="return confirmsub(Userform)">
</td>
</tr>
<%}else{%>
<tr>
<td colspan="2" style="text-align: center;">
<input class="gban" name=button1 type=button value="" onclick=exit()>
</td>
</tr>
<%}%>
</table>
</td>
</tr>
<tr>
<td height="46">
</td>
</tr>
</table>
</form>
</body>
</html>
<script language="javascript">
var fectureArray=new Array();
fectureArray=['请选择..'];
function setAreas(city_id){
AreaInfo.getAreaByParent(city_id,function(data){
DWRUtil.removeAllOptions("city");
DWRUtil.addOptions("city",fectureArray);
DWRUtil.addOptions("city",data);
});
}
function setCitys(prov){
var provence=prov;
AreaInfo.getAreaByParent(provence,function(data){
DWRUtil.removeAllOptions("eparchy_code");
DWRUtil.addOptions("eparchy_code",fectureArray);
DWRUtil.addOptions("eparchy_code",data);
DWRUtil.removeAllOptions("city");
DWRUtil.addOptions("city",fectureArray);
});
}
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -