12345678910111213141516171819202122232425262728293031323334 |
- <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme() + "://"
- + request.getServerName() + ":" + request.getServerPort()
- + path + "/";
- %>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <link rel="icon" href="<%=basePath %>resource/images/icon_title.png" type="image/x-icon"/>
- <link rel="stylesheet" href="<%=basePath%>resource/ext/4.2/resources/ext-theme-gray/ext-theme-gray-all.css" type="text/css"></link>
- <script type="text/javascript" src="<%=basePath%>resource/ext/4.2/ext-all.js"></script>
- <script type="text/javascript" src="<%=basePath%>resource/i18n/i18n.js"></script>
- <script type="text/javascript" src="<%=basePath %>resource/ux/TabCloseMenu.js"></script>
- <script type="text/javascript">
- Ext.Loader.setConfig({
- enabled: true
- });
- Ext.application({
- name: 'erp',
- appFolder: basePath + 'app',
- controllers : [ 'common.SysInit' ],
- launch : function() {
- Ext.create('erp.view.common.sysinit.ViewPort');
- }
- });
- var caller='SysInit';
- </script>
- </head>
- <body>
- </body>
- </html>
|