<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www./TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www./1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>报表统计_站点管理_站点对接</title> <script language="javascript" type="text/javascript" src="${path}/js/My97DatePicker/WdatePicker.js"></script> </head> <body> <form action="${path}/reportview/sysviewA2.action" method="post"> <span class="check_l"><label class="labelWidth">开始时间:</label><input id="d5222" name="startTime" class="Wdate" type="text" onFocus="var d5222=$dp.$('d5222');WdatePicker({onpicked:function(){d5222.focus();},maxDate:'#F{$dp.$D(\'d5222\')}'})" value="${startTime}"/></span><br /> <div class="checkBnt"><input type="submit" value="生成报表" class="buttonbg"/></div> <input type="hidden" name="resultViewPath" value="usermobiles"/> <input type="hidden" name="fullProcedure" value="rep_vol_registerMobile_afterStartTime"/> <input type="hidden" name="fullWhereFields" value="startTime"/> </form> <table border="0" cellspacing="0" cellpadding="0" class="rank_tab" width="100%"> <tr> <th width="60%" style="padding-left:100px;" align="left">手机号码</th> </tr> <c:forEach items="${requestScope.RESULTVIEW_LIST}" var="item"> <tr> <td align="left">${item["mobile"]}</td> </tr> </c:forEach> </table> </body> </html> |
|