| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>城智生活车辆监控</title>
- <meta name="description" content="">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- </head>
- <body>
- <c:if test="${not empty url }">
- <iframe src="${url}" id="monitor" scrolling="no" frameborder="0" width="100%" height="800" ></iframe>
- </c:if>
- <c:if test="${empty url }">
- <br> <br> <br> <br>
- <t:mutiLang langKey="common.nodestart.no"/>
- </c:if>
- <!-- <iframe id="monitor"
- src="http://pageapi.gpsoo.net/third?method=jump&page=monitor&locale=zh-cn&account=%E5%9F%8E%E6%99%BA%E7%94%9F%E6%B4%BB&target=%E5%9F%8E%E6%99%BA%E7%94%9F%E6%B4%BB&appkey=345e5887de3b739714d4df5ddbe57a01&t=1571297718261"
- frameborder="2" width="100%" height="800" scrolling="no" ></iframe>
- </body> -->
-
- <script type="text/javascript">
- $(document).ready(function(){
- var height = window.top.document.body.offsetHeight;
- var width = window.top.document.body.offsetWidth;
- width = width - 200- 20;
- height = height - 100 - 36 - 25;//去掉title高度、底部高度
- var pTar = document.getElementById('monitor');
- pTar.height = height;
- pTar.width = width;
- });
-
- </script>
- </html>
|