123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <%@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>
- <%@include file="../../../../include.jsp"%>
- <style type="text/css">
- input{
- cursor: pointer;
- }
- .errorData{
- color:red;
- }
- td .textinput,td .textinput_hover,td .textinput_click{
- width:inherit;
- }
- </style>
- <script type="text/javascript">
- var fd_id = "<%=request.getParameter("fd_id")%>";
- var taskData = getThing("/nwyj/ws/crud/CRUDService/getDataById/", {classid : '610',objectID : fd_id});//任务编号
- taskNum = "";
- taskNum = taskData.GPS_TASK_NUMBER_610;
- //返回主页面
- function goBack() {
- //获取iframe中的元素值
- var iframe =parent.parent.document.getElementsByName("frmright")[0];
- iframe.src = "/nwyj/page/business/gps/taskManagement/taskManagement.jsp";
- }
- function formReset(){
- window.location.href = "/nwyj/page/business/gps/taskManagement/gpsTaskMsg/gpsZiYuanBaoBiaoEdit.jsp?fd_id="+fd_id;
- }
- $(function(){
- $("#FD_TASK_620").val(fd_id);
- $("#downloadUserModel").bind('click',function(){
- window.open("/nwyj/excels/onBgdBaoBiao.xls");
- })
- })
- </script>
- <script type="text/javascript" src="<%=path%>/scripts/business/gps/taskManagement/gpsTaskMsg/gpsZiYuanBaoBiaoEdit.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/business/gps/taskManagement/setIframeHeight.js"></script>
-
- </head>
- <body>
- <div class="box1" id="formContent" style="border: 1px solid #E4E4E4;background: #F8F8F8;">
- <div style="height: 50px;background: #F8F8F8;" align="center"><a href="javascript:;"><img align="left" alt="返回" src="/nwyj/images/temp/back.png" onclick="goBack();"></img></a>
- <font style="font-weight: bold;font-size: 20px;line-height: 45px;" id="titleShow">保供电报表</font></div>
- <form id="editForm" method="post" enctype="multipart/form-data">
- <input type="hidden" name="FD_TASK_620" id="FD_TASK_620" required="true" />
- <input type="hidden" name="classid" value="630" required="true" />
- <table style="border: none" width="100%">
- <tr>
- <!-- <td width="20%" style="font-size: 20px;font-weight: bold;color:#41A6D9;">保供电报表</td> -->
- <td colspan="4" align="right"><input value="保存" type="button" id="save" />
- <input value="重置" type="button" onclick="formReset()"/>
- <input value="导出" type="button" id="export_btn"/> </td>
- </tr>
- <tr>
- <td align="right" width="30%">选择导入文件:</td>
- <td width="25%"><input name="import_report" fileWidth="300" id="import_report" type="file" contenteditable="false" /></td>
- <td width="10%"><div><input type="button" value="导入保供电报表数据" id="import_gpsUser"/></div></td>
- <td><div><input type="button" value="下载保供电报表模版" id="downloadUserModel"/></div></td>
- </tr>
- </table>
- </form>
- <div style="padding:5px 0 0 0;"></div>
- <div id="dataGrid"></div>
- </div>
- </body>
|