1234567891011121314151617181920212223242526272829303132333435 |
- <%@ 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="stylesheet" type="text/css" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css"/>
- <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
- <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
- <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
- <script type="text/javascript">
- Ext.Loader.setConfig({
- enabled: true
- });
- Ext.application({
- name: 'erp',
- appFolder: basePath+'app',
- controllers: [
- 'b2c.B2CSetting'
- ],
- launch: function() {
- Ext.create('erp.view.b2c.B2CSetting');
- }
- });
- var condition=getUrlParam('urlcondition');
- var caller='B2CSetting';
- </script>
- </head>
- <body>
- </body>
- </html>
|