Feedback.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. String caller=request.getParameter("caller");
  7. %>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <style type="text/css">
  15. .search-item {
  16. font:normal 11px tahoma, arial, helvetica, sans-serif;
  17. padding:3px 10px 3px 10px;
  18. border:1px solid #fff;
  19. border-bottom:1px solid #eeeeee;
  20. white-space:normal;
  21. color:#555;
  22. }
  23. .search-item h3 {
  24. display:block;
  25. font:inherit;
  26. font-weight:bold;
  27. color:#222;
  28. }
  29. .search-item h3 span {
  30. float: right;
  31. font-weight:normal;
  32. margin:0 0 5px 5px;
  33. width:150px;
  34. display:block;
  35. clear:none;
  36. }
  37. </style>
  38. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  39. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  40. <script type="text/javascript">
  41. Ext.Loader.setConfig({
  42. enabled: true
  43. });//开启动态加载
  44. Ext.application({
  45. name: 'erp',//为应用程序起一个名字,相当于命名空间
  46. appFolder: basePath+'app',//app文件夹所在路径
  47. controllers: [//声明所用到的控制层
  48. 'sys.Feedback'
  49. ],
  50. launch: function() {
  51. Ext.create('erp.view.sys.Feedback');//创建视图
  52. }
  53. });
  54. var emid = '<%=session.getAttribute("em_uu")%>';
  55. var caller = '<%=caller %>';
  56. var formCondition = '';
  57. var gridCondition = '';
  58. </script>
  59. </head>
  60. <body >
  61. </body>
  62. </html>