batchDealer.jsp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <style type="text/css">
  15. .custom-turned .x-grid-cell {
  16. background: #ffdab9 !important;
  17. font-style: italic !important;
  18. border-color: #ededed;
  19. border-style: solid;
  20. border-width: 1px 0;
  21. border-top-color: #fafafa;
  22. height: 26px;
  23. line-height: 26px
  24. }
  25. .custom-turned .x-grid-cell-inner {
  26. background: #ffdab9 !important;
  27. font-style: italic !important;
  28. }
  29. </style>
  30. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  31. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  32. <script type="text/javascript" src="<%=basePath %>resource/ux/CheckColumn.js"></script>
  33. <script type="text/javascript" src="<%=basePath %>resource/zebraBrowserPrint/BrowserPrint-1.0.4.min.js"></script>
  34. <script type="text/javascript" src="<%=basePath %>resource/zebraBrowserPrint/zebraPrint.js"></script>
  35. <script type="text/javascript">
  36. Ext.Loader.setConfig({
  37. enabled: true
  38. });//开启动态加载
  39. Ext.application({
  40. name: 'erp',//为应用程序起一个名字,相当于命名空间
  41. appFolder: basePath+'app',//app文件夹所在路径
  42. controllers: [//声明所用到的控制层
  43. 'common.BatchDealer'
  44. ],
  45. launch: function() {
  46. Ext.create('erp.view.common.batchDeal.ViewPorter');
  47. }
  48. });
  49. var caller = getUrlParam('whoami');
  50. var dataCount = 0;//结果总数
  51. caller = caller.replace(/'/g, "");
  52. var urlcondition = getUrlParam('urlcondition');
  53. var em_id ='<%=session.getAttribute("em_id")%>';
  54. var height = window.innerHeight;
  55. if(Ext.isIE){//ie不支持window.innerHeight;document.documentElement.clientHeight == 0
  56. height = screen.height*0.73;
  57. }
  58. var pageSize = parseInt(height*0.7/23);
  59. var page = 1;
  60. var value = 0;
  61. var total = 0;
  62. var page = 1;
  63. var pageSize = 90;
  64. </script>
  65. </head>
  66. <body>
  67. </body>
  68. </html>