initial commit

This commit is contained in:
chenjinsong
2018-09-27 16:21:05 +08:00
commit dc91c4c987
2011 changed files with 408920 additions and 0 deletions

View File

@@ -0,0 +1,88 @@
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ include file="/common/taglib.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>i18n_gulfg.message.title_n81i</title>
<link href="<c:url value='/css/nms.css'/>" rel="stylesheet"
type="text/css" />
<script language="javascript" type="text/javascript"
src="<c:url value='/js/jquery-1.4.2.min.js'/>"></script>
</head>
<script type="text/javascript">
function goBack(pageNo,pageSize){
document.parentWindow.location="<c:url value='/'/>sysManage/userGroupPerssion.do?action=query&pageNo="+pageNo+"&pageSize="+pageSize;
}
</script>
<body bgcolor="#EBECEB">
<div class="middle_list1">
<form name=form1 id="from1"
action="<c:url value='/sysManage/systemManage!getGroupUserForGuide.do'/>"
method="post" style="margin: 0; padding: 0">
<input type="hidden" name="position" value="${position }">
<input type="hidden" name="userGroupId" value="${userGroupId }">
<input type="hidden" name="pageNo" value="${pageNo }">
<input type="hidden" name="pageSize" value="${pageSize }">
<table border="0" cellpadding="0" cellspacing="0" class="table1" align="center">
<tr>
<td width="4%" class="color_1">
i18n_gulfg.text.index_n81i
</td>
<td width="10%" class="color_1">
i18n_gulfg.text.userId_n81i
</td>
<td width="15%" class="color_1">
i18n_gulfg.text.username_n81i
</td>
<td width="12%" class="color_1">
i18n_gulfg.text.createTime_n81i
</td>
<td width="5%" class="color_7">
i18n_gulfg.text.isVaild_n81i
</td>
</tr>
<c:choose>
<c:when test="${fn:length(userList) > 0}">
<c:forEach items="${userList}" var="user" varStatus="userVar">
<tr>
<td class="color_3">
${userVar.count + (pageNo-1)*pageSize}
</td>
<td class="color_3">
${user.yhbh}
</td>
<td class="color_3">
${user.yhmc}
</td>
<td class="color_3">
<fmt:formatDate value="${user.ctime}" type="both" />
</td>
<td class="color_6">
<c:if test="${user.zxbz==0}" var="flag">i18n_gulfg.message.isVaild0_n81i</c:if>
<c:if test="${!flag}">i18n_gulfg.message.isVaild1_n81i</c:if>
</td>
</tr>
</c:forEach>
</c:when>
<c:otherwise>
<tr>
<td colspan="7" height="20" align="center" class="color_6">
i18n_gulfg.text.noRecord_n81i
</td>
</tr>
</c:otherwise>
</c:choose>
</table>
<c:if test="${!empty userList}">
<jsp:include page="/common/pageSub.jsp" />
</c:if>
</form>
</div>
</body>
</html>