FlowList.jsp 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
  4. <%
  5. String path = request.getContextPath();
  6. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  7. %>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12. <%-- <link rel="stylesheet" href="<%=basePath %>resource/css/main-sysnavigation.css" type="text/css"></link> --%>
  13. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  14. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  15. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  16. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  17. <style type="text/css">
  18. .x-tree-panel .x-grid-row .x-grid-cell {
  19. border: 1px solid #cacaca;
  20. background-color: #f5f5f5;
  21. border-top: none;
  22. border-right: none;
  23. }
  24. .x-btn-gray {
  25. background: #d5d5d5;
  26. background: -moz-linear-gradient(top, #fff 0, #efefef 38%, #d5d5d5 88%);
  27. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff),
  28. color-stop(38%, #efefef), color-stop(88%, #d5d5d5));
  29. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff',
  30. endColorstr='#d5d5d5', GradientType=0);
  31. border-color: #bfbfbf;
  32. border-radius: 2px;
  33. vertical-align: bottom;
  34. text-align: center;
  35. }
  36. #flowbutton .tree-nav-add{
  37. width: 16px;
  38. height: auto;
  39. top: 14px;
  40. left: 0;
  41. bottom: 0;
  42. right: auto;
  43. }
  44. .x-tree-icon-parent {
  45. height: 16px !important;
  46. width: 16px !important;
  47. background: url(../../../resource/images/tree/book.png) no-repeat 0px -0px !important;
  48. }
  49. .x-tree-cls-close .x-tree-icon-leaf{
  50. margin-right:4px !important;
  51. margin-top:4px !important;
  52. width: 16px;
  53. background-image: url(css/close.png);
  54. }
  55. .x-tree-cls-enable .x-tree-icon-leaf{
  56. margin-right:4px !important;
  57. margin-top:4px !important;
  58. width: 16px;
  59. background-image: url(css/enable.png);
  60. }
  61. .x-tree-panel .x-grid-row .x-grid-cell-inner{
  62. height:26px;
  63. line-height: 24px;
  64. }
  65. .x-tree-panel .x-grid-row .x-grid-cell-inner img {
  66. margin-top: 3px;
  67. }
  68. .x-action-col-icon {
  69. height: 16px;
  70. margin-left:5px !important;
  71. }
  72. </style>
  73. <script type="text/javascript">
  74. Ext.Loader.setConfig({
  75. enabled: true,
  76. });//开启动态加载
  77. Ext.application({
  78. name: 'erp',//为应用程序起一个名字,相当于命名空间
  79. appFolder: basePath+'app',//app文件夹所在路径
  80. controllers: [//声明所用到的控制层
  81. 'oa.flow.FlowList'
  82. ],
  83. launch: function() {
  84. Ext.create('erp.view.oa.flow.FlowList');
  85. }
  86. });
  87. var caller = "FlowList";
  88. var formCondition = '';
  89. var gridCondition = '';
  90. </script>
  91. </head>
  92. <body>
  93. </body>
  94. </html>