uiuserGet.jsp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <title>jqueryUI用户表明细</title>
  6. <%@include file="/commons/include/customForm.jsp"%>
  7. <script type="text/javascript">
  8. //放置脚本
  9. </script>
  10. </head>
  11. <body>
  12. <div class="panel">
  13. <div class="panel-top">
  14. <div class="tbar-title">
  15. <span class="tbar-label">jqueryUI用户表详细信息</span>
  16. </div>
  17. <div class="panel-toolbar">
  18. <div class="toolBar">
  19. <div class="group">
  20. <a class="link back" href="list.ht"><span></span>返回</a>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. <table cellpadding="2" cellspacing="0" border="1" class="formTable">
  27. <tbody>
  28. <tr>
  29. <td colspan="8" class="formHead">jqueryUI用户表</td>
  30. </tr>
  31. <tr>
  32. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">用户名:</td>
  33. <td style="width:15%;" class="formInput"><span name="editable-input" style="display:inline-block;" isflag="tableflag">${uiuser.UIname}</span></td>
  34. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">密码:</td>
  35. <td style="width:15%;" class="formInput"><span name="editable-input" style="display:inline-block;" isflag="tableflag">${uiuser.password}</span></td>
  36. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">年龄:</td>
  37. <td style="width:15%;" class="formInput"><span name="editable-input" style="display:inline-block;" isflag="tableflag">${uiuser.age}</span></td>
  38. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">生日:</td>
  39. <td style="width:15%;" class="formInput"><fmt:formatDate value='${uiuser.birthday}' pattern='yyyy-MM-dd'/></td>
  40. </tr>
  41. <tr>
  42. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">年薪:</td>
  43. <td style="width:15%;" class="formInput">${uiuser.salary}</td>
  44. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">是否党员:</td>
  45. <td style="width:15%;" class="formInput"><span name="editable-input" style="display:inline-block;padding:2px;" class="selectinput"><c:if test='${uiuser.isInPart==1}'>是</c:if><c:if test='${uiuser.isInPart==0}'>否</c:if></span></td>
  46. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">备注:</td>
  47. <td style="width:15%;" class="formInput"><textarea name="comment" validate="{empty:false}" readonly="readonly">${uiuser.comment}</textarea></td>
  48. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">家庭住址:</td>
  49. <td style="width:15%;" class="formInput"><span name="editable-input" style="display:inline-block;" isflag="tableflag">${uiuser.homeAddress}</span></td>
  50. </tr>
  51. <tr>
  52. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">所属部门:</td>
  53. <td style="width:15%;" class="formInput"><span name="editable-input" style="display:inline-block;" isflag="tableflag">${uiuser.department}</span></td>
  54. <td align="right" style="width:10%;" class="formTitle" nowrap="nowarp">入职日期:</td>
  55. <td style="width:15%;" class="formInput"><fmt:formatDate value='${uiuser.joinDate}' pattern='yyyy-MM-dd'/></td>
  56. <td style="width:10%;" class="formTitle"></td>
  57. <td style="width:15%;" class="formInput"></td>
  58. <td style="width:10%;" class="formTitle"></td>
  59. <td style="width:15%;" class="formInput"></td>
  60. </tr>
  61. </tbody>
  62. </table>
  63. </body>
  64. </html>