batchMail.jsp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <style type="text/css">
  14. .x-hrorgTree {
  15. color: null;
  16. font: normal 11px tahoma, arial, verdana, sans-serif;
  17. background-color: #f1f1f1 !important;
  18. border-color: #ededed;
  19. border-style: solid;
  20. border-width: 1px 0;
  21. border-top-color: #fafafa;
  22. height: 26px;
  23. line-height: 26px;
  24. }
  25. .x-hrorgTree:hover {
  26. background-color:#FAFAFA !important;
  27. font-size: 14px;
  28. font-weight: bold;
  29. color: green;
  30. }
  31. .x-tree-icon-leaf{
  32. width: 16px;
  33. background-image: url(../../../resource/css/images/leaf.png);
  34. }
  35. .x-grid-tree-node-expanded .x-tree-icon-parent{
  36. background: url(../../../resource/css/images/folder-open.png) no-repeat !important;
  37. }
  38. .x-tree-icon-parent{
  39. width: 16px;
  40. background-image: url(../../../resource/css/images/folder-close.png);
  41. }
  42. .span-focus{
  43. background-color: rgb(255,255,204) ;
  44. cursor: pointer;
  45. border-radius: 8px;
  46. border-left: 1px solid gray;
  47. border-right: 1px solid gray;
  48. }
  49. #autotip{
  50. position: absolute;
  51. z-index: 99;
  52. top: 25px;
  53. border: 1px solid gray;
  54. background-color: white;
  55. border-radius: 3px;
  56. }
  57. #autotip ul li{
  58. color:black;
  59. cursor:pointer;
  60. font-size: 14px;
  61. margin-top: 3px;
  62. }
  63. #autotip ul li:hover{
  64. background-color: rgb(255,255,204);
  65. }
  66. .mySpan{
  67. color:red;
  68. float:left;
  69. font-family:microsoft yahei,sans-serif;
  70. font-size:14px;
  71. margin-right:5px;
  72. width:100px;
  73. padding-left: 3px;
  74. padding-top: 2px;
  75. }
  76. #choseButton{
  77. background: url(<%=basePath %>resource/images/upgrade/bluegray/icon/maindetail/search-trigger.png) no-repeat;
  78. width: 18px;
  79. border: none;
  80. }
  81. </style>
  82. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  83. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  84. <script type="text/javascript">
  85. Ext.Loader.setConfig({
  86. enabled: true
  87. });//开启动态加载
  88. Ext.application({
  89. name: 'erp',//为应用程序起一个名字,相当于命名空间
  90. appFolder: basePath+'app',//app文件夹所在路径
  91. controllers: [//声明所用到的控制层
  92. 'oa.batchMail.batchMail'
  93. ],
  94. launch: function() {
  95. Ext.create('erp.view.oa.batchMail.batchMail');//创建视图
  96. }
  97. });
  98. var caller = getUrlParam('whoami');//caller决定了该页面的一切信息和逻辑
  99. var formCondition = '';
  100. var gridCondition = '';
  101. </script>
  102. </head>
  103. <body>
  104. </body>
  105. </html>