📄 postedit.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="<%=basePath %>"/>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>用户信息</title>
<link href="<%=basePath %>skin/default/default.css" rel="stylesheet" type="text/css" />
</head>
<body class="mainbody">
<html:form action="/manage/usermanage" onsubmit="return funcOnSubmit()">
<html:hidden property="id"/>
<html:hidden property="task" value="postmodify"/>
<table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td class="tdgriud">
首页 >>
系统管理 >>
员工管理
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tdborder">
<COLGROUP>
<COL WIDTH="15%" align="left">
<COL WIDTH="35%" align="left">
<COL WIDTH="15%" align="left">
<COL WIDTH="35%" align="left">
<COLGROUP>
<tr>
<td colspan="4" class="tdtitle">员工修改</td>
</tr>
<tr>
<td class="tdlbg">员工姓名:</td>
<td class="tdrbg">
<html:text property="employee_name"/></td>
<td class="tdlbg">身份证号码:</td>
<td class="tdrbg">
<html:text property="id_card"/></td>
</tr>
<tr>
<td class="tdlbg">来电电话:</td>
<td class="tdrbg"><html:text property="telephone"></html:text></td>
<td class="tdlbg">毕业院校:</td>
<td class="tdrbg"><html:text property="school"></html:text></td>
</tr>
<tr>
<td class="tdlbg">手机号码:</td>
<td class="tdrbg"><html:text property="mobile"></html:text></td>
<td class="tdlbg">专业:</td>
<td class="tdrbg"><html:text property="professional"></html:text></td>
</tr>
<tr>
<td class="tdlbg">职位:</td>
<td class="tdrbg">
<html:select property="post">
<html:options collection="postlist" labelProperty="fieldname" property="fieldcode"></html:options>
</html:select>
</td>
<td class="tdlbg">所属客户转移给:</td>
<td class="tdrbg">
<html:select property="employee_id">
<html:options collection="userlist" labelProperty="employee_name" property="id"></html:options>
</html:select>
</td>
</tr>
<tr>
<td class="tdrbg" colspan="4" align="center">
<input type="submit" name="Submit" class="btn_save" value="保 存" />
<input type="button" name="Submit2" class="btn_back" value="返 回" onclick="location.href='<%=basePath %>manage/usermanage.do?task=postuserlist'"/>
</td>
</tr>
</table>
</html:form>
<<script type="text/javascript">
<!--
function funcOnSubmit(){
if('${usermanageForm.post}'=='SUPPORT'||'${usermanageForm.post}'=='COMPLAINT'){
if('SUPPORT'!=document.getElementsByName('post').value||'COMPLAINT'!=document.getElementsByName('post').value){
return window.confirm('职位发生改变');
}
}
}
//-->
</script>
<iframe width="174" height="189" name="gToday:normal:agenda.js" id="gToday:normal:agenda.js" src="<%=path%>/include/calendar/ipopeng.htm" scrolling="no" frameborder="0" style="visibility:visible; z-index:999; position:absolute; top:-500px; left:-500px;">
</iframe>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -