FeedBack.jsp.svn-base 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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"
  13. href="<%=basePath%>resource/ext/4.2/resources/ext-theme-gray/ext-theme-gray-all.css"
  14. type="text/css"></link>
  15. <link rel="stylesheet" href="<%=basePath%>resource/css/opensys.css"
  16. type="text/css"></link>
  17. <style type="text/css">
  18. .single-field .x-field-label-cell {
  19. background: transparent;
  20. padding-left: 3px;
  21. }
  22. .progress {
  23. padding: -10px 0px 0px 20px;
  24. margin: 10px 0px 0px 20px;
  25. clear: both;
  26. color: #888;
  27. font-size: 13px;
  28. }
  29. .progress>div {
  30. height: 100%;
  31. }
  32. .progress>div>div {
  33. margin: 0px -4px;
  34. width: 100px;
  35. height: 100px;
  36. position: relative;
  37. background: none;
  38. border: 0;
  39. }
  40. .progress>div>div>span.lines {
  41. position: absolute;
  42. content: '';
  43. z-index: 1;
  44. width: 2px;
  45. height: 110%;
  46. background: #D1D1D1;
  47. /* background: #D1D1D1; */
  48. /* left: 0; */
  49. top: 10px;
  50. margin-top: 0;
  51. -webkit-border-radius: 2px;
  52. -moz-border-radius: 2px;
  53. border-radius: 2px;
  54. margin-left: 5px;
  55. }
  56. .progress>div>p.remark {
  57. position: absolute;
  58. width: 80%;
  59. word-wrap: break-word;
  60. width: 500px;
  61. margin-left: 50px;
  62. }
  63. .progress>div>div>span.circle {
  64. z-index: 2;
  65. position: relative;
  66. height: 5px;
  67. width: 5px;
  68. -webkit-border-radius: 50em;
  69. -moz-border-radius: 50em;
  70. border-radius: 50em;
  71. font-size: 12px;
  72. border: 3px solid #D1D1D1;
  73. /* background: white; */
  74. background: #D1D1D1;
  75. -webkit-box-sizing: content-box;
  76. -moz-box-sizing: content-box;
  77. box-sizing: content-box;
  78. padding: 0;
  79. display: block;
  80. /* margin: 0px auto; */
  81. cursor: pointer;
  82. }
  83. .progress>div>div>span.active {
  84. height: 10px;
  85. width: 10px;
  86. border-color: #EF9E9E;
  87. background-color: #E83030;
  88. border: 2px solid #EF9E9E;
  89. margin-left: -1px;
  90. }
  91. .progress>div>p.start {
  92. color: black;
  93. }
  94. </style>
  95. <script type="text/javascript"
  96. src="<%=basePath%>resource/ext/4.2/ext-all.js"></script>
  97. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  98. <script type="text/javascript">
  99. Ext.Loader.setConfig({
  100. enabled: true
  101. });//开启动态加载
  102. Ext.application({
  103. name: 'erp',//为应用程序起一个名字,相当于命名空间
  104. appFolder: basePath+'app',//app文件夹所在路径
  105. controllers: [//声明所用到的控制层
  106. 'opensys.FeedBack'
  107. ],
  108. launch: function() {
  109. Ext.create('erp.view.opensys.feedback.ViewPort');//创建视图
  110. }
  111. });
  112. var caller = '<%=caller %>';
  113. var enUU = '<%=session.getAttribute("enUU")%>';
  114. var formCondition = '';
  115. var gridCondition = '';
  116. </script>
  117. </head>
  118. <body>
  119. </body>
  120. </html>