jprocessTransfer.jsp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
  4. <%
  5. String path = request.getContextPath();
  6. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  7. %>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  15. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  16. <script type="text/javascript" src="<%=basePath %>resource/ux/grid/GridHeaderFilters.js"></script>
  17. <script type="text/javascript">
  18. Ext.Loader.setConfig({
  19. enabled: true
  20. });//开启动态加载
  21. Ext.application({
  22. name: 'erp',//为应用程序起一个名字,相当于命名空间
  23. appFolder: basePath+'app',//app文件夹所在路径
  24. controllers: [//声明所用到的控制层
  25. 'common.JProcessTransfer'
  26. ],
  27. launch: function() {
  28. Ext.create('erp.view.common.JProcess.JprocessTransfer');
  29. }
  30. });
  31. var caller = "JprocessTransfer";
  32. var formCondition = '';
  33. var gridCondition = '';
  34. </script>
  35. </head>
  36. <body>
  37. </body>
  38. </html>