thightchart.jsp 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
  2. <%@include file="/pages/includes/taglibs.jsp"%>
  3. <%String path = request.getContextPath();%>
  4. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  5. <html>
  6. <head>
  7. <title>My JSP 'thightchart.jsp' starting page</title>
  8. <meta http-equiv="pragma" content="no-cache">
  9. <meta http-equiv="cache-control" content="no-cache">
  10. <meta http-equiv="expires" content="0">
  11. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  12. <meta http-equiv="description" content="This is my page">
  13. <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/pages/mytest/css/mycss.css" />
  14. <link rel="stylesheet" type="text/css"
  15. href="<%=request.getContextPath()%>/resource/plugin/highslide/highslide.css" />
  16. <link rel="stylesheet" type="text/css"
  17. href="<%=request.getContextPath()%>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
  18. <link rel="stylesheet" type="text/css" media="screen"
  19. href="<%=request.getContextPath()%>/resource/plugin/jqgrid/css/ui.jqgrid.css"/>
  20. </head>
  21. <body>
  22. <input id="biaotou" type="hidden" value="${biaotou }"><br>
  23. <input id="dianming" type="hidden" value="${dianming }"><br>
  24. <input id="danwei" type="hidden" value="${danwei }"><br>
  25. <!-- <input id="Button1" type="button" value="点击弹出层" onclick="ShowDiv('MyDiv','fade');queryDatafirsload()" />
  26. 弹出层时背景层DIV
  27. <div id="fade" class="black_overlay">
  28. </div> -->
  29. <div id="MyDiv" class="white_content" style="display: display">
  30. <!-- <div style="text-align: right; cursor: default; height: 40px;">
  31. <span style="font-size: 16px;" onclick="CloseDiv('MyDiv','fade')">关闭</span>
  32. </div> -->
  33. <fieldset style="height: 80px;width: 1200px" id="fst">
  34. <legend class="item_Name">查询条件</legend>
  35. <table class="dataform">
  36. <tr>
  37. <th width="100" class="item_Name">
  38. 开始时间:
  39. </th>
  40. <td width="120" style="text-align: left">
  41. <input
  42. class="Wdate"
  43. onFocus="WdatePicker({dateFmt:'yyyy-MM-dd',isShowWeek:true,readOnly:true})"
  44. id="startDate" name="startDate" title="开始日期" />
  45. </td>
  46. <th width="100" class="item_Name">
  47. 结束时间:
  48. </th>
  49. <td width="120" style="text-align: left">
  50. <input
  51. class="Wdate"
  52. onFocus="WdatePicker({dateFmt:'yyyy-MM-dd',isShowWeek:true,readOnly:true})"
  53. id="endDate" name="endDate" title="结束日期" />
  54. </td>
  55. <td width="120" style="text-align: right">
  56. <input type="button" onclick="javascript:queryData()" id="toexcel" value="查询"/>
  57. </td>
  58. </table>
  59. </fieldset>
  60. <div id="container" style="min-width:400px;height:400px"></div>
  61. </div>
  62. <script type="text/javascript" src="<%=path %>/pages/mytest/js/myjs.js"></script>
  63. <script type="text/javascript" src="<%=path %>/resource/js/jquery-1.8.3.js"></script>
  64. <script type="text/javascript" src="<%=path %>/pages/mytest/js/highstock.js"></script>
  65. <script type="text/javascript" src="<%=path %>/pages/mytest/js/exporting.js"></script>
  66. <script type="text/javascript" src="<%=path %>/pages/mytest/js/highcharts-zh_CN.js"></script>
  67. <script src="<%=request.getContextPath()%>/resource/js/datePicker/WdatePicker.js" type="text/javascript"></script>
  68. <script type="text/javascript">
  69. window.onload = function () {
  70. dianming=$("#dianming").val();
  71. biaotou=$("#biaotou").val();
  72. danwei=$("#danwei").val();
  73. init(biaotou,dianming,danwei);
  74. };
  75. </script>
  76. </body>
  77. </html>