ProjectDoc.jsp 1.7 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  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. <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. <style type="text/css">
  18. .x-grid-tree-node-expanded .x-tree-icon-parent {
  19. background: url(../../../resource/ext/resources/themes/images/gray/tree/folder-open.gif) no-repeat !important;;
  20. }
  21. .x-grid-row .x-grid-cell{
  22. background-color:white;
  23. }
  24. </style>
  25. <script type="text/javascript">
  26. Ext.Loader.setConfig({
  27. enabled: true
  28. });//开启动态加载
  29. Ext.application({
  30. name: 'erp',//为应用程序起一个名字,相当于命名空间
  31. appFolder: basePath+'app',//app文件夹所在路径
  32. controllers: [//声明所用到的控制层
  33. 'plm.project.ProjectDoc'
  34. ],
  35. launch: function() {
  36. Ext.create('erp.view.plm.project.ProjectDoc');//创建视图
  37. }
  38. });
  39. var Condition = getUrlParam('Condition');
  40. </script>
  41. </head>
  42. <body>
  43. </body>
  44. </html>