1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <%@ page contentType="text/html; charset=utf-8" session="false" %>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <div>
- 管理员:<strong>${userName }</strong>,欢迎您!
- <a target="contfrm" href="javascript:void(0);" onclick="userchangepwd(this)">修改密码</a>
- |
- <a target="contfrm" href="welcome.html">回到首页</a>
- |
- <a href="##" onclick="loginout();">安全退出</a>
- </div>
- <ul>
- <li>
- <a id="id_reeorchart" href="javascript:void(0);" onclick="reeorchart(this)"></a>
- </li>
- <script>
- function userchangepwd(e){
- iframeBox(e, {
- src:"${contextPath}/admin/adminuser/changepwd.html?message=",
- width:470,
- height:280
- });
- }
- function reeorchart(e){
-
- var pageWidth = document.body.clientWidth;
- var pageHeight = document.body.clientHeight;
-
- var child = document.getElementById("contfrm").contentWindow;
- var beginDate = child.document.getElementById("beginDate").value;
- var endDate = child.document.getElementById("endDate").value;
- var Times = child.document.getElementById("Times").value;
- var DataCaptureNo = child.document.getElementById("DataCaptureNo").value;
- var DriverID = child.document.getElementById("DriverID").value;
- iframeBox(e, {
- src:"${contextPath}/admin/statistics/reeorchart.html?beginDate="+beginDate+"&endDate="+endDate+"&Times="+Times+"&DataCaptureNo="+DataCaptureNo+"&DriverID="+DriverID,
- width:pageWidth-50,
- height:pageHeight-50
- });
- }
- </script>
- <!-- <li>|</li> -->
- <!-- <li><a href="#">导航栏</a></li> -->
- <!-- <li>|</li> -->
- <!-- <li><a href="#">导航栏</a></li> -->
- </ul>
-
|