Buganalyse.jsp 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  12. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  13. <style type="text/css">
  14. #sidebar a:link {
  15. color:#1C86EE;
  16. text-decoration:none;
  17. }
  18. #sidebar a:visited {
  19. color:#1C86EE;
  20. text-decoration:none;
  21. }
  22. #sidebar a:hover {
  23. color:#CD2626;
  24. text-decoration:none;
  25. }
  26. #sidebar a:active {
  27. color:#1C86EE;
  28. text-decoration:none;
  29. }
  30. </style>
  31. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  32. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  33. <script type="text/javascript" src="<%=basePath %>resource/ux/grid/GridHeaderFilters.js"></script>
  34. <script type="text/javascript" src="<%=basePath %>resource/ux/data/PagingMemoryProxy.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. 'plm.test.Buganalyse'
  44. ],
  45. launch: function() {
  46. Ext.create('erp.view.plm.test.Buganalyse');//创建视图
  47. }
  48. });
  49. var dataCount = 0;
  50. var condition="";
  51. var page = 1;
  52. var caller='';
  53. var msg = '';
  54. var height = window.innerHeight*0.83;
  55. var pageSize = parseInt(height*0.7/20);
  56. var startdate='';
  57. var enddate='';
  58. var menu='';
  59. </script>
  60. </head>
  61. <body >
  62. </body>
  63. </html>