123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <%@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="/page/include2.jsp" %>
- <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/system/invoking/invoking.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/freamwork/com/sinosoft/common/searchUtil.js"></script>
- <link href="<%=path%>/scripts/freamwork/com/sinosoft/common/searchUtil.css" rel="stylesheet" type="text/css"/>
- <script type="text/javascript" src="<%=path%>/scripts/business/em/monitor/alertReceive/weatherAlert/WeatherAlertManager.js"></script>
- <style type="text/css">
- .blue_font{
- color:blue;
- }
- .noData_div{
-
- height: 100px;
- font-size: 32px;
- text-align: center;
- line-height: 100px;
- }
- </style>
- </head>
- <body style="width: 1000px; margin:0 auto; margin-top:15px" align="center" >
- <div class="box1" id="formContent" style="border: 1px solid #E4E4E4;background: #F8F8F8;width:1000px;">
- <div align="center">
- <font style="font-weight: bold;font-size: 20px;line-height: 45px;">气象预警信息</font>
- </div>
- <form id="queryForm" method="post">
- <table width="900px">
- <tr>
- <td align="right" width="100px">开始日期:</td>
- <td>
- <input type="text" readonly="readonly" style="width: 200px;" dateFmt="yyyy-MM-dd" name="startDate" id="startDate" class="date"/>
- </td>
- <td align="right" width="100px">结束日期:</td>
- <td>
- <input type="text" readonly="readonly" style="width: 200px;" dateFmt="yyyy-MM-dd" name="endDate" id="endDate" class="date"/>
- </td>
- <td align="right" width="100px">城市:</td>
- <td>
- <input type="text" readonly="readonly" style="width: 200px;" name="cityName" id="cityName"/>
- <input type="hidden" name="cityCode" id="cityCode"/>
- </td>
- <td>
- <button id='cityButton' type="button"><span class="print_tem">选择</span></button>
- </td>
- </tr>
- </table>
- <table width="100%" >
- <tr>
- <td align="center">
- <button id='searchButton' type="button"><span class="print_tem">查询</span></button>
- <button id="resetButton" type="button"><span class="export_tem">重置</span></button>
- </td>
- </tr>
- </table>
- </form>
- <div class="padding_right5" style="overflow-x:hidden;">
- <div id="dataGrid" style="overflow-x:hidden;"></div>
- </div>
- <br />
- </div>
- </body>
- </html>
|