detail.jsp
来自「crm系统 有源码 及相关文档sql2005 数据库 客户反馈模块」· JSP 代码 · 共 54 行
JSP
54 行
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="/WEB-INF/jb-common.tld" prefix="jb" %>
<script src="validate.js" ></script>
<script src="icommon.js" ></script>
<html:errors/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<title>察看用户</title>
<link rel="stylesheet" type="text/css" href="styles.css" >
</head>
<body class="main">
<html:form action="user" method="post">
<html:hidden property="o" value="doAssignRole" />
<html:hidden property="item.usrId" />
<html:hidden property="item.usrFlag" />
<span class="page_title">用户信息</span>
<div class="button_bar">
<button class="common_button" onclick="javascript:history.go(-1);">返回</button>
</div>
<table class="query_form_table" border="0" cellPadding="3" cellSpacing="0">
<tr>
<th>用户名</th>
<td class="input_content">
${userForm.item.usrName }
</td>
<th>密码</th>
<td class="input_content">
******
</td>
</tr>
<tr>
<th class="input_title">角色</th>
<td class="input_content">
${userForm.item.usrRole.roleName==null?"未指定":userForm.item.usrRole.roleName }
</td>
<th class="input_title">状态</th>
<td class="input_content">
${userForm.item.usrFlagString }
</td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?