weixin_index.jsp 696 B

12345678910111213141516171819
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort() + path+"/";
  5. request.setAttribute("contextPath", basePath);
  6. %>
  7. <!-- 系统默认启动后访问地址 -->
  8. <!DOCTYPE html>
  9. <html lang="en">
  10. <head>
  11. <base href="<%=basePath%>">
  12. <meta charset="UTF-8">
  13. <script type="text/javascript" src="${contextPath }res/js/jquery.min.js"></script>
  14. <script type="text/javascript">
  15. $(function(){
  16. window.location.href = '${contextPath}web/mgmUserCtl/index.cs';
  17. });
  18. </script>
  19. </head>