positionGet.jsp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <title>系统岗位表,实际是部门和职务的对应关系表明细</title>
  6. <%@include file="/commons/include/get.jsp"%>
  7. <script type="text/javascript">
  8. $(function(){
  9. var authId = "${param.authId}";
  10. if(authId == ""){
  11. $(".back").attr("href","list.ht?orgId=${param.orgId}&authId=${param.authId}");
  12. }
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <div class="panel">
  18. <div class="panel-top">
  19. <div class="tbar-title">
  20. <span class="tbar-label">系统岗位表,实际是部门和职务的对应关系表详细信息</span>
  21. </div>
  22. <c:if test="${canReturn!=2}">
  23. <div class="panel-toolbar">
  24. <div class="toolBar">
  25. <div class="group">
  26. <a class="link back" href="gradeList.ht?orgId=${param.orgId}&authId=${param.authId}"><span></span>返回</a>
  27. </div>
  28. </div>
  29. </div>
  30. </c:if>
  31. </div>
  32. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  33. <tr>
  34. <th width="20%">组织名称:</th>
  35. <td>${sysOrg.orgName} </td>
  36. </tr>
  37. <tr>
  38. <th width="20%">职务:</th>
  39. <td>${position.jobName}</td>
  40. </tr>
  41. <tr>
  42. <th width="20%">岗位名称:</th>
  43. <td>${position.posName}</td>
  44. </tr>
  45. <tr>
  46. <th width="20%">岗位代码:</th>
  47. <td>${position.posCode}</td>
  48. </tr>
  49. <tr>
  50. <th width="20%">岗位描述:</th>
  51. <td>${position.posDesc}</td>
  52. </tr>
  53. <tr>
  54. <th width="20%">是否删除:</th>
  55. <td>
  56. <c:choose>
  57. <c:when test="${position.isDelete ==1}">
  58. <span class="red">删除</span>
  59. </c:when>
  60. <c:otherwise>
  61. <span class="green">否</span>
  62. </c:otherwise>
  63. </c:choose>
  64. </td>
  65. </tr>
  66. </table>
  67. </div>
  68. </div>
  69. </body>
  70. </html>