productWhmonthSubject.jsp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 type="text/css" rel="stylesheet" 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. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  14. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  15. <script type="text/javascript" src="<%=basePath %>resource/ux/grid/GridHeaderFilters.js"></script>
  16. <script type="text/javascript" src="<%=basePath %>resource/ux/data/PagingMemoryProxy.js"></script>
  17. <script type="text/javascript" src="<%=basePath %>resource/ux/grid/Export.js"></script>
  18. <script type="text/javascript">
  19. Ext.Loader.setConfig({
  20. enabled: true
  21. });//开启动态加载
  22. Ext.application({
  23. name: 'erp',//为应用程序起一个名字,相当于命名空间
  24. appFolder: basePath+'app',//app文件夹所在路径
  25. controllers: [//声明所用到的控制层
  26. 'scm.reserve.ProductWhmonthSubject'
  27. ],
  28. launch: function() {
  29. Ext.create('erp.view.scm.reserve.ProductWhmonth');//创建视图
  30. }
  31. });
  32. var caller = 'Productwhmonth!subject';
  33. var formCondition = '';
  34. var gridCondition = '';
  35. var condition = '';
  36. var page = 1;
  37. var value = 0;
  38. var total = 0;
  39. var dataCount = 0;//结果总数
  40. var msg = '';
  41. var height = window.innerHeight;
  42. if(Ext.isIE){
  43. height = screen.height*0.72;
  44. }
  45. var pageSize = parseInt(height*0.7/23);
  46. </script>
  47. </head>
  48. <body >
  49. </body>
  50. </html>