batchDeal.jsp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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>
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css"/>
  12. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  13. <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ux/css/CheckHeader.css" />
  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/CheckColumn.js"></script>
  17. <script type="text/javascript" src="<%=basePath %>resource/zebraBrowserPrint/BrowserPrint-1.0.4.min.js"></script>
  18. <script type="text/javascript" src="<%=basePath %>resource/zebraBrowserPrint/zebraPrint.js"></script>
  19. <script type="text/javascript">
  20. Ext.Loader.setConfig({
  21. enabled: true
  22. });//开启动态加载
  23. Ext.application({
  24. name: 'erp',//为应用程序起一个名字,相当于命名空间
  25. appFolder: basePath+'app',//app文件夹所在路径
  26. controllers: [//声明所用到的控制层
  27. 'common.BatchDeal'
  28. ],
  29. launch: function() {
  30. Ext.create('erp.view.common.batchDeal.Viewport');
  31. }
  32. });
  33. var caller = getUrlParam('whoami');
  34. caller = caller.replace(/'/g, "");
  35. var urlcondition = getUrlParam('urlcondition');
  36. </script>
  37. </head>
  38. <body>
  39. </body>
  40. </html>