batchDealNew.jsp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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/6.2/resources/ext-theme-gray/ext-theme-gray-all.css"/>
  12. <%-- <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ext/6.2/resources/ext-theme-neptune/ext-theme-neptune-all.css"/>
  13. --%>
  14. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  15. <%-- <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link> --%>
  16. <%-- <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ux/css/CheckHeader.css" /> --%>
  17. <!-- <style type="text/css">
  18. .custom-turned .x-grid-cell {
  19. background: #ffdab9 !important;
  20. font-style: italic !important;
  21. border-color: #ededed;
  22. border-style: solid;
  23. border-width: 1px 0;
  24. border-top-color: #fafafa;
  25. height: 26px;
  26. line-height: 26px
  27. }
  28. .custom-turned .x-grid-cell-inner {
  29. background: #ffdab9 !important;
  30. font-style: italic !important;
  31. }
  32. </style> -->
  33. <script type="text/javascript" src="<%=basePath %>resource/ext/6.2/ext-all-debug.js"></script>
  34. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  35. <%--
  36. <script type="text/javascript" src="<%=basePath %>resource/ux/CheckColumn.js"></script> --%>
  37. <%-- <script type="text/javascript" src="<%=basePath %>resource/zebraBrowserPrint/BrowserPrint-1.0.4.min.js"></script>
  38. <script type="text/javascript" src="<%=basePath %>resource/zebraBrowserPrint/zebraPrint.js"></script> --%>
  39. <script type="text/javascript">
  40. Ext.Loader.setConfig({
  41. enabled: true
  42. });//开启动态加载
  43. Ext.application({
  44. name: 'erp',//为应用程序起一个名字,相当于命名空间
  45. appFolder: basePath+'app',//app文件夹所在路径
  46. controllers: [//声明所用到的控制层
  47. 'common.BatchDealNew'
  48. ],
  49. launch: function() {
  50. Ext.create('erp.view.common.batchDealNew.Viewport');
  51. }
  52. });
  53. var basestarttime=new Date();
  54. var caller = getUrlParam('whoami');
  55. caller = caller.replace(/'/g, "");
  56. var urlcondition = getUrlParam('urlcondition');
  57. var em_id ='<%=session.getAttribute("em_id")%>';
  58. </script>
  59. </head>
  60. <body>
  61. </body>
  62. </html>