123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <%@page contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title></title>
- <%@include file="../../../../include.jsp" %>
- <!--引用资源文件,JS CSS-->
- <script type="text/javascript" src="<%=path%>/scripts/jquery/plugins/jquery.extension.util.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/common.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/utils/utils.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/frameWork/frameWork.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/business/he/common/common.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/utils/Request.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/qui/libs/js/tree/ztree/ztree.js"></script>
- <link href="<%=path%>/scripts/qui/libs/js/tree/ztree/ztree.css" rel="stylesheet" type="text/css" />
-
- <script type="text/javascript" src="<%=path%>/scripts/business/em/evaluate/syst/Syst_View.js"></script>
- <script type="text/javascript">
- var fd_id = "<%=request.getParameter("fd_id")%>";
- //alert(fd_id);
- //页面初始化
- $(function(){
- //查看表单
- if(fd_id.length>0){
- $(".titleShow").text("体系详情");
- var url = $.pathname() + '/ws/crud/CRUDService/getDataById/';
- var params = {
- classid : '372',
- objectID : fd_id
- };
- getFileList(fd_id,0);
- $.request.query(url,params,function(data){
- $("#NAME_372").html(data.NAME_372)//体系名
- $("#PARENT_ID_372").html(data.PARENT_ID_372_SHOW)//上级体系
- $("#REMARK_372").html(data.REMARK_372)//备注
- $("#WRITE_TIME_372").html(data.WRITE_TIME_372)//创建时间
- /*$('#showForm1').ajaxWrite({data:data});
- $("#showForm2").ajaxWrite({data:data}); */
- });
- }
-
- $("#back").hover(function(){
- $(this).attr("src","/nwyj/images/temp/back_hover.png");
- },function(){
- $(this).attr("src","/nwyj/images/temp/back.png");
- });
- });
- </script>
- <style type="text/css">
- body,div,ul,li,p{
- margin:0;
- padding:0;
- font-size: 14px;
- }
- .d_ground{
- border: 1px solid #cdcaca;
- background: white;
- width:1000px;
- }
- .fieldset{
- border-style:solid;
- border-width:1px;
- border-color:#cdcaca;
- margin:0px 20px 20px 20px;
- width: 935px
- }
- .back{
- margin:8px 0px 0px 15px;
- }
- </style>
- </head>
- <body style="width: 1000px; margin:0 auto; margin-top:15px" align="center">
- <div class="d_ground" id="formContent" >
- <div style="height: 40px;background: white;" align="center">
- <a href="javascript:;"><img id="back" class="back" align="left" alt="返回" title="返回" src="/nwyj/images/temp/back.png" /></a>
- <font style="font-weight: bold;font-size: 20px;line-height: 45px;color: #3e62a0" class="titleShow"></font>
- </div>
- <hr />
- <br />
- <!-- 非解除的详细信息 -->
- <form id="showForm1">
- <fieldset class="fieldset">
- <legend><div align="left"><font style="font-weight: bold;font-size: 15px;line-height: 25px;color: #3e62a0" id="" class="titleShow"></font></div></legend>
- <table class="tableStyle" style="width: 85%;" align="center">
- <!-- <table class="tableStyle" style="width: 60%;" align="center" id="contentTable"> -->
- <tr>
- <td width="25%" align="right"><span>体系名:</span></td><!-- <span class="star">*</span> -->
- <td width="75%"><div id="NAME_372"></div></td>
- </tr>
- <tr>
- <td width="25%" align="right"><span>上级体系:</span></td>
- <td width="75%"><div id="PARENT_ID_372"></div></td>
- </tr>
- <tr>
- <td width="25%" align="right"><span>备注:</span></td>
- <td width="75%"><div id="REMARK_372"></div></td>
- </tr>
- <tr>
- <td width="25%" align="right"><span>创建时间:</span></td>
- <td width="75%"><div id="WRITE_TIME_372"></div></td>
- </tr>
- </table>
- </fieldset>
- </form>
- </div>
- </body>
- </html>
|