goalPlan.jsp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  6. %>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  11. <title>Insert title here</title>
  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">
  17. Ext.Loader.setConfig({
  18. enabled: true
  19. });//开启动态加载
  20. Ext.application({
  21. name: 'erp',//为应用程序起一个名字,相当于命名空间
  22. appFolder: basePath+'app',//app文件夹所在路径
  23. controllers: [//声明所用到的控制层
  24. 'io.busObjectives.GoalPlan'
  25. ],
  26. launch: function() {
  27. Ext.create('erp.view.io.busObjectives.GoalPlan');//创建视图
  28. }
  29. });
  30. var caller = 'goalPlan';
  31. var dbfinds = [];
  32. var formCondition = '';
  33. var gridCondition = '';
  34. var isSaas = false;
  35. </script>
  36. </head>
  37. <body>
  38. </body>
  39. </html>