home.jsp 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  6. %>
  7. <html><head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  9. <!-- 避免IE使用兼容模式 -->
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
  11. <meta name="renderer" content="webkit">
  12. <%@ include file="ap.jsp" %>
  13. <script type="text/javascript" src="${pageContext.request.contextPath}/static/plugins/echarts/echarts.min.js"></script>
  14. </head>
  15. <body>
  16. <div class="topjui-container">
  17. <div class="topjui-row">
  18. <div class="topjui-col-md12">
  19. <div data-toggle="topjui-echarts"
  20. data-options="id:'lineChart',
  21. url:'../json/echarts/line.json',
  22. width:900,height:600"></div>
  23. </div>
  24. </div>
  25. </div>
  26. </body>
  27. </body>
  28. </html>