📄 list.jsp
字号:
<%@ page contentType = "text/html;charset=GBK"%>
<%@ taglib uri="/WEB-INF/tag.tld" prefix="tag" %>
<%@ taglib uri="/WEB-INF/displaytag-11.tld" prefix="display" %>
<%@ page import="cn.com.juneng.system.common.BaseForm" %>
<%@ page import="cn.com.juneng.system.common.COMMON" %>
<link href="<%=request.getContextPath()%>/css/commonPage.css" rel="stylesheet" type="text/css">
<script type='text/javascript' language='JavaScript' src='<%=request.getContextPath()%>/js/COMMON.js'></script>
<script type='text/javascript' language='JavaScript' src='<%=request.getContextPath()%>/js/calendar.js'></script>
<title>用户列表</title>
<%
BaseForm bForm = (BaseForm)request.getAttribute("BaseForm");
%>
<form name=form1 action="<tag:attr source="ActionUrl" />" method="post" >
<input type="hidden" name="showQuery" value="<%=bForm.isShowQuery() %>">
<input type="hidden" name="userId">
<input type="hidden" name="orgId" value="<tag:attr source="VO" attr="orgId" />">
<table >
<tr>
<td class="tHeading"><div align='center'><b>用户.列表</b></div></td>
</tr>
<tr><td >
<fieldset >
<legend ><span onclick='query()'><img id="qImg" src="<%=request.getContextPath() %>/images/common/<%=bForm.isShowQuery()?"jia.gif":"jian.gif" %>">查询</span></legend>
<table id="qTable" title="输入条件值进行查询;双击清除查询条件" ondblclick="clearQuery()" border='0' class="list_condition_table" style="display:<%=bForm.isShowQuery()?"none":"block" %>">
<tr>
<td class="list_condition_td_title" width='10%'>用户登陆名</td>
<td class="list_condition_td_input" width='40%'><input type="text" name="$Q_account" value="<tag:attr source="qMap" attr="$Q_account" />"></td>
<td class="list_condition_td_title" width='10%'>用户姓名</td>
<td class="list_condition_td_input" width='40%'><input type="text" name="$Q_username" value="<tag:attr source="qMap" attr="$Q_username" />">
<input type="button" value="查询" onclick="execute('list')">
</td>
</tr>
</table>
</fieldset>
</td></tr>
<TBODY>
<tr><td>
<tag:turnPageTag pageMethod="list"/>
</td></tr>
</TBODY>
</table>
<display:table class="its" name="List" id="VO" export="false" attribute="<%=COMMON.TABLE_STYLE%>">
<display:column title="选择" attribute="title='点击全选' onclick=\"selectAll('Ids')\"">
<input type=checkbox name=Ids value='<tag:attr source="VO" attr="userId" />'>
</display:column>
<display:column title="用户登陆名" attribute="onclick=\"orderBy('account')\"">
<a href="#" onclick="view('userId','<tag:attr source="VO" attr="userId" />')">
<tag:attr source="VO" attr="account" />
</a>
</display:column>
<display:column title="用户姓名" attribute="onclick=\"orderBy('username')\"" property="username"/>
<display:column title="性别" attribute="onclick=\"orderBy('gender')\"" property="gender"/>
<display:column title="生日" attribute="onclick=\"orderBy('birthday')\"">
<tag:attr source="VO" attr="birthday" />
</display:column>
<display:column title="联系电话" attribute="onclick=\"orderBy('telephone')\"" property="telephone"/>
<display:column title="email地址" attribute="onclick=\"orderBy('email')\"" property="email"/>
<display:column title="移动电话" attribute="onclick=\"orderBy('mobile')\"" property="mobile"/>
<display:column title="当前状态" attribute="onclick=\"orderBy('user_status')\"" >
<tag:dic name="user_status" value="<%=""+((cn.com.juneng.system.vo.SysUserVOImpl)VO).getUserStatus() %>" kind="035" onlyshow="true"/>
</display:column>
</display:table>
<br>
<input type="button" value="新增" onclick="execute('init')"> <input type="button" value="删除" onclick="selectAndExecute('delete') ">
<input type="button" value="帐号停用" onclick="selectAndStopUser('stop') ">
<input type="button" value="帐号启用" onclick="selectAndStartUser('start') ">
</form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -