1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0,user-scalable=no" />
- <title>订阅</title>
- <%
- String basePath = request.getScheme() + "://"
- + request.getServerName() + ":" + request.getServerPort()
- + request.getContextPath() + "/";
- %>
- <script type="text/javascript" src="<%=basePath%>resource/jquery/jquery-1.11.3.min.js"></script>
- <script type="text/javascript" src="<%=basePath%>resource/jquery/jquery.json-2.2.min.js"></script>
- <script type="text/javascript" src="<%=basePath%>resource/other/highcharts-4.2.5.js"></script>
- <link rel="stylesheet" href="<%=basePath%>resource/jquery/jsgrid/css/jsgrid.css" type="text/css" />
- <link rel="stylesheet" href="<%=basePath%>resource/jquery/jsgrid/css/theme.css" type="text/css" />
- <script type="text/javascript" src="<%=basePath%>resource/jquery/jsgrid/jsgrid.min.js"></script>
- <base href="<%=basePath%>jsps/mobile/" />
- <link rel="stylesheet" href="charts.css" type="text/css" />
- <script type="text/javascript" src="charts.js"></script>
- <script type="text/javascript" src="chartsBase.js"></script>
- </head>
- <body style="background-color:#EDEDED;">
- <div>
- <div id='sum'></div>
- <div id='container'></div>
- <div id='list'></div>
- </div>
- <!-- modal -->
- <div class="modal-backdrop in" style="z-index: 9998; display: none"></div>
- <div class="modal in" style="z-index: 9999; display: none">
- <div class="modal-dialog modal-sm">
- <div class="modal-content">
- <div class="modal-header">
- <strong class="modal-title text-lg"></strong>
- <a class="clearbutton" id="clearbutton"></a>
- </div>
- <div class="modal-body"></div>
- </div>
- </div>
- </div>
- </body>
- <script>
-
- var emId = '<%=request.getAttribute("emId")%>';
- var numId= '<%=request.getAttribute("numId")%>';
- var mainId= '<%=request.getAttribute("mainId")%>';
- var insId= '<%=request.getAttribute("insId")%>';
- var title= '<%=request.getAttribute("title")%>';
- var dialog;
-
- var basePath = (function() {
- var fullPath = window.document.location.href;
- var path = window.document.location.pathname;
- var subpos = fullPath.indexOf('//');
- var subpath = subpos > -1 ? fullPath.substring(0, subpos + 2) : '';
- if (subpos > -1)
- fullPath = fullPath.substring(subpos + 2);
- var pos = fullPath.indexOf(path), sname = path.substring(0, path.substr(1).indexOf('/') + 1);
- return subpath + fullPath.substring(0, pos) + (sname == '/ERP' ? '/ERP/' : '/');
- })();
- </script>
- </html>
|