📄 cpcompanymanagemodifyright.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ page import="com.longtime.wap.model.Cp,com.longtime.wap.model.UserInfo"%>
<%@ 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+"/";
UserInfo userInfo = (UserInfo )request.getAttribute("userInfo");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:form action="/editCpAdmin.do?method=editCpAdmin" method="post">
<html:hidden property="userId" />
<html:hidden property="regDate" />
<table width="750" border="0" align="center" class="TableBack">
<th colspan="3">编辑cp管理员信息</th>
<tr>
<td class="tborder"></td>
<td> </td>
<td class="tborder"></td>
</tr>
<logic:notEmpty name="wap_global_messages" scope="request">
<tr>
<TD colspan="2">
<logic:iterate id="message" name="wap_global_messages" scope="request">
<center>
<font color="red">
<li>
<bean:write name="message" />
</li>
</font>
</center>
</logic:iterate>
</TD>
</tr>
</logic:notEmpty>
<tr>
<td class="tborder"></td>
<td>
<table width="95%" align="center" border="1" class="TableBack">
<tr>
<td align="right">登陆名: </td>
<html:hidden property="logName" value="<%=userInfo.getUserName()%>"/>
<html:hidden property="regDate" value="<%=userInfo.getRegDate().toString()%>" />
<td><%=userInfo.getUserName()%></td>
</tr>
<tr>
<td align="right">单位名称: </td>
<td class="Key">
<html:select property="cpName">
<html:options collection="cpList" property="value" labelProperty="label" />
</html:select> *<html:errors property="cpName" />
</td>
</tr>
<tr>
<td align="right">管理员名称: </td>
<td class="Key"><html:text property="adminName" /> *<html:errors property="adminName" /></td>
</tr>
<tr>
<td align="right">描 述: </td>
<td><html:textarea property="description" cols="40" rows="5"></html:textarea><html:errors property="description" /></td>
</tr>
<tr>
<td align="right">密 码: </td>
<td class="Key"><html:password property="password" ></html:password> *<html:errors property="password" /></td>
</tr>
<tr>
<td align="right">密码确认: </td>
<td class="Key"><html:password property="confirm" /> *<html:errors property="confirm" /></td>
</tr>
</table>
</td>
<td class="tborder"></td>
</tr>
<tr>
<td class="tborder"></td>
<td> </td>
<td class="tborder"></td>
</tr>
<tr>
<td class="tborder"></td>
<td align="center"><html:submit value="保存" />
<input type="reset" value="重置" />
<input type="button" value="返回" onclick="window.location.href='<%=path%>/module/cost/manageCpAdmin.do?method=listCpAdmin';">
</td>
<td class="tborder"></td>
</tr>
<tr>
<td colspan="3" class="tborder"></td>
</tr>
</table>
</html:form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -