123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <%@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" %>
- <script type="text/javascript">
- // 对Date的扩展,将 Date 转化为指定格式的String
- // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
- // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
- // 例子:
- // (allGetServerTime()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
- // (allGetServerTime()).Format("yyyy-M-d h:m:s.S") ==> 2006-7-2 8:9:4.18
- Date.prototype.Format = function(fmt)
- { //author: meizz
- var o = {
- "M+" : this.getMonth()+1, //月份
- "d+" : this.getDate(), //日
- "h+" : this.getHours(), //小时
- "m+" : this.getMinutes(), //分
- "s+" : this.getSeconds(), //秒
- "q+" : Math.floor((this.getMonth()+3)/3), //季度
- "S" : this.getMilliseconds() //毫秒
- };
- if(/(y+)/.test(fmt))
- fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
- for(var k in o)
- if(new RegExp("("+ k +")").test(fmt))
- fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
- return fmt;
- }
- //返回主页面
- function goBack() {
- //获取iframe中的元素值
- var iframe =parent.document.getElementsByName("frmright")[0];
- iframe.src = "/nwyj/page/business/em/response/report/reportInput/ReportInput.jsp";
- }
- var fd_objectid="<%=request.getParameter("fd_id")%>";
- $(function(){
- //预警类别
- $("#fileDiv").newAsyncFileUpload("",fd_objectid,0);//附件
- if(fd_objectid.length>0){
- var params = {classid : "321",objectID : "<%=request.getParameter("fd_id")%>"};
- $.ajax({
- url : $.pathname() + '/ws/crud/CRUDService/getDataById/',
- type : 'post',
- timeout : 15000,
- data : params,
- dataType : 'json',
- success : function(data){
- //当操作状态为4的时候,显示回退内容
- if(data.OPR_STATE_321 == "4"){
- $("#RETURN_EXPLAIN").show();
- }else{
- $("#RETURN_EXPLAIN").hide();
- }
- /* $('#myFormId').ajaxWrite({data:data}); */
- $("#myFormId input[name='classid']").val("321");
- $("#EARLY_WARNING_ID_321").html(data.EARLY_ID_321);//预警编号
- $("#REPORT_NAME_321").html(data.REPORT_NAME_321);//报告名称
- $("#RETURN_EXPLAIN_321").html(data.RETURN_EXPLAIN_321);//回退说明
-
- $("#INPUT_UNIT_321").html(data.INPUT_UNIT_321_SHOW);//填报部门
- $("#INPUT_NAME_321").html(data.INPUT_NAME_321);//填报人
- $("#INPUT_DATE_321").html(data.INPUT_DATE_321);//填报日期
- $("#IS_RELEASE_321_SHOW").html(data.IS_RELEASE_321_SHOW);
- $("#OPR_STATE_321_SHOW").html(data.OPR_STATE_321_SHOW);
- },
- error : function(e){
- $.messager.alert('查询应急工作专报失败');
- }
- });
- }
-
- });
- </script>
- </head>
- <body>
- <div class="box1" id="formContent" >
- <div style="height: 50px;background: #F8F8F8;" align="center"><font style="font-weight: bold;font-size: 20px;line-height: 45px;">查看应急工作专报</font></div>
- <form id="myFormId" >
- <input name="classid" value="321" type="hidden"/>
- <input id="FD_OBJECTID321" name="FD_OBJECTID321" type="hidden"/>
- <fieldset style="border-color:#999999;" id="fileTable" >
- <legend>基本信息:</legend>
- <table class="tableStyle">
- <tr>
- <td width="10%" align="right">报告名称:</td>
- <td width="50%"><div name="REPORT_NAME_321" id="REPORT_NAME_321" style="width:90%"></div></td>
- <td width="10%" align="right">应急响应编号:</td>
- <td width="30%"><div name="EARLY_ID_321" id="EARLY_WARNING_ID_321" style="width:90%"></div></td>
- </tr>
- <tr>
- <td width="10%" align="right">填报部门:</td>
- <td width="90%" colspan="3"><div name="INPUT_UNIT_321" id="INPUT_UNIT_321" style="width:90%"></div></td>
- </tr>
- <tr>
- <td width="10%" align="right">填报人:</td>
- <td width="50%"><div name="INPUT_NAME_321" id="INPUT_NAME_321" style="width:90%"></div></td>
- <td width="10%" align="right">填报时间:</td>
- <td width="30%"><div name="INPUT_DATE_321" id="INPUT_DATE_321" style="width:90%"></div></td>
- </tr>
- <tr>
- <td width="10%" align="right">上报状态:</td>
- <td width="50%"><div name="OPR_STATE_321" id="OPR_STATE_321_SHOW" style="width:90%"></div></td>
- <td width="10%" align="right">发布状态:</td>
- <td width="30%"><div name="IS_RELEASE_321" id="IS_RELEASE_321_SHOW" style="width:90%"></div></td>
- </tr>
- <tr id="RETURN_EXPLAIN">
- <td width="10%" align="right" colspan="2">回退说明:</td>
- <td width="90%" colspan="2"><div name="RETURN_EXPLAIN_321" id="RETURN_EXPLAIN_321" style="width:90%"></div></td>
- </tr>
- </table>
- </fieldset>
- </form>
- <fieldset style="border-color:#999999;" id="fileTable" >
- <legend>附件信息:</legend>
- <div id="fileDiv"></div>
- </fieldset>
- </div>
- </body>
|