123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <%@page language="java" 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>
- <!--框架必需start-->
- <%@include file="../../../include.jsp" %>
- <!--框架必需end-->
- <script type="text/javascript" >
- $(function(){
- //修改表单信息,获取记录
- if((window.location.href).indexOf('?')>-1){
- var fd_id = (window.location.href).split('?')[1];
- var url = $.pathname() + '/ws/crud/CRUDService/getDataById/';
- var params = {
- classid : '230',
- objectID : fd_id
- };
- getFileList(fd_id,0);
- $.ajax({
- url : url,
- type : 'post',
- timeout : 60000,
- data : params,
- dataType : 'json',
- success : function(data){
- for(var i in data){
- $('#'+i).html(data[i]);
- }
- },
- error : function(e){
- top.Dialog.alert('系统提示信息', '访问服务失败!', 'error');
- }
- });
- }
- });
- </script>
- <style type="text/css">
- .title_class {
- font-size: 22px;
- color: blue;
- }
- .tool_class {
- display: inline-block;
- float: right;
-
- }
- ._title{
- display: block;
- position: absolute;
- font-size: 22px;
- font-width:bold;
- }
- .searchbar_class {
- width: 220px;
- margin:0 0 0 160px;
- }
- .db_class {
- margin: 0 auto;
- }
- </style>
- </head>
-
- <body>
- <div style="height: 50px;background: #F8F8F8;" align="center"><a href="javascript:;"><img class="back" title="返回" onclick="window.history.back()" align="left" alt="返回" src="/nwyj/images/temp/back.png" /></a><font style="font-weight: bold;font-size: 20px;line-height: 45px;" >应急制度文件详情信息</font></div>
- <form id="fillForm" name="fillForm" method="post" action="" failAlert="表单填写不正确,请按要求填写!">
- <div class="table_class" style="margin:5px 5px 5px 5px">
- <table width="100%" class="tableStyle">
-
- <tr>
- <td width="20%" align="right">文件标题:</td>
- <td width="30%"><div id="FILE_TITLE_230" name="FILE_TITLE_230" /></td>
- <td width="20%" align="right">文件分类:</td>
- <td width="30%"><div id="FILE_CLASSIFY_230_SHOW" name="FILE_CLASSIFY_230" ></td>
- </tr>
- <tr>
- <td align="right">发文日期:</td>
- <td><div id="FILE_ADD_DATE_230" name="FILE_ADD_DATE_230" /></td>
- <td align="right">电子文件:</td>
- <td><div id="ELECTRONIC_FILE_230" name="ELECTRONIC_FILE_230" /></td>
- </tr>
- <tr>
- <td align="right">文件摘要:</td>
- <td><div id="FILE_CONTENT_230" name="FILE_CONTENT_230" /></td>
- <td align="right">变更说明:</td>
- <td><div id="CHANGE_DETAIL_230" name="CHANGE_DETAIL_230" /></td>
- </tr>
- <tr>
- <td align="right">变更类别:</td>
- <td><div id="CHANGE_TYPE_230_SHOW" name="" /></td>
- <td align="right">归档人:</td>
- <td><div id="PIGEONHOLE_MAN_ID_230_SHOW" name="" /></td>
- </tr>
- <tr>
- <td align="right">归档日期:</td>
- <td><div id="PIGEONHOLE_DATE_230" name="" /></td>
- <td></td>
- <td></td>
- </tr>
- </table>
- <table style="width: 100%;" align="center" border="0">
- <tr><td colspan="3"><div id="maingrid"></div></td></tr>
- </table>
- </form>
- </div>
- </body>
- </html>
|