| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- 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" />
- <meta http-equiv="X-UA-Compatible" content="IE=9"/>
- <meta http-equiv="X-UA-Compatible" content="IE=10"/>
- <link rel="stylesheet" type="text/css" href="css/easyui/themes/default/easyui.css">
- <link rel="stylesheet" type="text/css" href="css/easyui/themes/icon.css">
- <link rel="stylesheet" type="text/css" href="css/easyui/demo/demo.css">
- <script type="text/javascript" src="css/easyui/jquery.min.js"></script>
- <script type="text/javascript" src="css/easyui/jquery.easyui.min.js" charset="utf-8"></script>
- <script type="text/javascript" src="css/easyui/locale/easyui-lang-zh_CN.js" charset="utf-8"></script>
- <link rel="stylesheet" type="text/css" href="css/common/hzbstyle.css">
- <script type="text/javascript" src="js/common/area.js"></script>
-
- <script type="text/javascript">
- //var currTabId=parent.currTabId;
- //var parentObj=parent.$("#"+currTabId)[0].contentWindow;
- window.onload=function(){
- document.getElementById("hlf").value=parent.exportString;
- };
- function btnExcel(){
- document.getElementById("type").value="excel";
- document.getElementById("formAction").submit();
- }
- function btnWord(){
- document.getElementById("type").value="word";
- document.getElementById("formAction").submit();
- }
- </script>
- <style>
- .span{
- font-family:'Microsoft YaHei', Verdana, 'SimSun', 'Lucida Grande', 'Trebuchet MS', Helvetica, sans-serif;letter-spacing:normal; font-size: 14px;
- }
- </style>
- </head>
- <body style="padding:20px; align:center" >
- <form id="formAction" action="ajax/downloadExcel" method="post">
- <font size="3px" class="span" >请选择数据导出生成文件格式 ......</font><br /><br />
- <input id="dgg" class="easyui-linkbutton" type="button" value="excel" onclick="btnExcel()"/>
- <input id="dgg" class="easyui-linkbutton" type="button" style="margin-left:50px;" value="word" onclick="btnWord()"/>
- <input id="hlf" name="hfs" type="hidden"/>
- <input id="type" name="type11" type="hidden"/>
- </form>
- </body>
- </html>
|