8b8fca58c455d00a4927c6e4c5240fbfd5b3be48.svn-base 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title></title>
  7. <%@include file="../../../../include.jsp" %>
  8. <!--引用资源文件,JS CSS-->
  9. <script type="text/javascript" src="<%=path%>/scripts/jquery/plugins/jquery.extension.util.js"></script>
  10. <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/common.js"></script>
  11. <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/utils/utils.js"></script>
  12. <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/frameWork/frameWork.js"></script>
  13. <script type="text/javascript" src="<%=path%>/scripts/business/he/common/common.js"></script>
  14. <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/utils/Request.js"></script>
  15. <script type="text/javascript" src="<%=path%>/scripts/qui/libs/js/tree/ztree/ztree.js"></script>
  16. <link href="<%=path%>/scripts/qui/libs/js/tree/ztree/ztree.css" rel="stylesheet" type="text/css" />
  17. <script type="text/javascript" src="<%=path%>/scripts/business/em/evaluate/syst/Syst_View.js"></script>
  18. <script type="text/javascript">
  19. var fd_id = "<%=request.getParameter("fd_id")%>";
  20. //alert(fd_id);
  21. //页面初始化
  22. $(function(){
  23. //查看表单
  24. if(fd_id.length>0){
  25. $(".titleShow").text("体系详情");
  26. var url = $.pathname() + '/ws/crud/CRUDService/getDataById/';
  27. var params = {
  28. classid : '372',
  29. objectID : fd_id
  30. };
  31. getFileList(fd_id,0);
  32. $.request.query(url,params,function(data){
  33. $("#NAME_372").html(data.NAME_372)//体系名
  34. $("#PARENT_ID_372").html(data.PARENT_ID_372_SHOW)//上级体系
  35. $("#REMARK_372").html(data.REMARK_372)//备注
  36. $("#WRITE_TIME_372").html(data.WRITE_TIME_372)//创建时间
  37. /*$('#showForm1').ajaxWrite({data:data});
  38. $("#showForm2").ajaxWrite({data:data}); */
  39. });
  40. }
  41. $("#back").hover(function(){
  42. $(this).attr("src","/nwyj/images/temp/back_hover.png");
  43. },function(){
  44. $(this).attr("src","/nwyj/images/temp/back.png");
  45. });
  46. });
  47. </script>
  48. <style type="text/css">
  49. body,div,ul,li,p{
  50. margin:0;
  51. padding:0;
  52. font-size: 14px;
  53. }
  54. .d_ground{
  55. border: 1px solid #cdcaca;
  56. background: white;
  57. width:1000px;
  58. }
  59. .fieldset{
  60. border-style:solid;
  61. border-width:1px;
  62. border-color:#cdcaca;
  63. margin:0px 20px 20px 20px;
  64. width: 935px
  65. }
  66. .back{
  67. margin:8px 0px 0px 15px;
  68. }
  69. </style>
  70. </head>
  71. <body style="width: 1000px; margin:0 auto; margin-top:15px" align="center">
  72. <div class="d_ground" id="formContent" >
  73. <div style="height: 40px;background: white;" align="center">
  74. <a href="javascript:;"><img id="back" class="back" align="left" alt="返回" title="返回" src="/nwyj/images/temp/back.png" /></a>
  75. <font style="font-weight: bold;font-size: 20px;line-height: 45px;color: #3e62a0" class="titleShow"></font>
  76. </div>
  77. <hr />
  78. <br />
  79. <!-- 非解除的详细信息 -->
  80. <form id="showForm1">
  81. <fieldset class="fieldset">
  82. <legend><div align="left"><font style="font-weight: bold;font-size: 15px;line-height: 25px;color: #3e62a0" id="" class="titleShow"></font></div></legend>
  83. <table class="tableStyle" style="width: 85%;" align="center">
  84. <!-- <table class="tableStyle" style="width: 60%;" align="center" id="contentTable"> -->
  85. <tr>
  86. <td width="25%" align="right"><span>体系名:</span></td><!-- <span class="star">*</span> -->
  87. <td width="75%"><div id="NAME_372"></div></td>
  88. </tr>
  89. <tr>
  90. <td width="25%" align="right"><span>上级体系:</span></td>
  91. <td width="75%"><div id="PARENT_ID_372"></div></td>
  92. </tr>
  93. <tr>
  94. <td width="25%" align="right"><span>备注:</span></td>
  95. <td width="75%"><div id="REMARK_372"></div></td>
  96. </tr>
  97. <tr>
  98. <td width="25%" align="right"><span>创建时间:</span></td>
  99. <td width="75%"><div id="WRITE_TIME_372"></div></td>
  100. </tr>
  101. </table>
  102. </fieldset>
  103. </form>
  104. </div>
  105. </body>
  106. </html>