You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jeecg/WebContent/webpage/system/user/userOrgSelect.jsp

35 lines
1.7 KiB

<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="/context/mytags.jsp"%>
<!DOCTYPE html>
<html>
<head>
<title>用户的角色选择页面</title>
<t:base type="jquery,easyui,tools"></t:base>
</head>
<body style="overflow-y: hidden" scroll="no">
<t:formvalid formid="formobj" dialog="true" layout="table" action="loginController.do?login">
<input id="id" name="id" type="hidden" value="${user.id }">
<table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
<tr>
<td align="right" width="15%" nowrap><label class="Validform_label"> <t:mutiLang langKey="common.username"/>: </label></td>
<td class="value" width="85%">
<c:if test="${user.id!=null }"> ${user.userName } </c:if>
<c:if test="${user.id==null }">
<input id="userName" class="inputxt" name="userName" validType="t_s_base_user,userName,id" value="${user.userName }" datatype="s2-10" />
<span class="Validform_checktip"> <t:mutiLang langKey="username.rang2to10"/></span>
</c:if>
</td>
</tr>
<tr>
<td align="right"><label class="Validform_label"> <t:mutiLang langKey="common.department"/>: </label></td>
<td class="value">
<select id="orgId" name="orgId" datatype="*">
<c:forEach items="${orgList}" var="org">
<option value="${org.id }">${org.departname}</option>
</c:forEach>
</select>
<span class="Validform_checktip"><t:mutiLang langKey="please.select.department"/></span></td>
</tr>
</table>
</t:formvalid>
</body>