userOrgSelect.jsp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>选择登录身份部门</title>
  7. <t:base type="jquery,easyui,tools"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" dialog="true" layout="table" action="loginController.do?login">
  11. <input id="id" name="id" type="hidden" value="${user.id }">
  12. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
  13. <tr>
  14. <td align="right" width="15%" nowrap><label class="Validform_label"> <t:mutiLang langKey="common.username"/>: </label></td>
  15. <td class="value" width="85%">
  16. <c:if test="${user.id!=null }"> ${user.userName } </c:if>
  17. <c:if test="${user.id==null }">
  18. <input id="userName" class="inputxt" name="userName" validType="t_s_base_user,userName,id" value="${user.userName }" datatype="s2-10" />
  19. <span class="Validform_checktip"> <t:mutiLang langKey="username.rang2to10"/></span>
  20. </c:if>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td align="right"><label class="Validform_label"> <t:mutiLang langKey="common.department"/>: </label></td>
  25. <td class="value">
  26. <select id="orgId" name="orgId" datatype="*">
  27. <c:forEach items="${orgList}" var="org">
  28. <option value="${org.id }">${org.departname}</option>
  29. </c:forEach>
  30. </select>
  31. <span class="Validform_checktip"><t:mutiLang langKey="please.select.department"/></span></td>
  32. </tr>
  33. </table>
  34. </t:formvalid>
  35. </body>