updateScheme.jsp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%
  4. request.setCharacterEncoding("utf-8");
  5. String path = request.getContextPath();
  6. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  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. <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ux/css/CheckHeader.css" />
  15. <style>
  16. .custom .x-panel-body-default {
  17. background: #f1f2f5;
  18. }
  19. .custom .x-form-item-label {
  20. margin-left: 3px;
  21. font-family: "ChantelliAntiquaRegular";
  22. }
  23. .x-tree-parent:hover {
  24. background-color:#FAFAFA !important;
  25. font-size: 14px;
  26. font-weight: bold;
  27. color: green;
  28. }
  29. .x-tree-parent:hover {
  30. background-color:#f1f1f1 !important;
  31. font-size: 15;
  32. margin-top: 5px;
  33. height: 23!important;
  34. }
  35. .x-grid-row-selected .x-grid-cell,.x-grid-row-selected .x-grid-rowwrap-div {
  36. border-style: dotted;
  37. border-color: #a3bae9;
  38. background-color: #f1f1f1!important;
  39. color: blue;
  40. font-weight: normal;
  41. }
  42. .x-tree-parent {
  43. background-color:#f1f1f1 !important;
  44. font-size: 15;
  45. margin-top: 5px;
  46. height: 23!important;
  47. }
  48. </style>
  49. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  50. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  51. <script type="text/javascript" src="<%=basePath %>resource/ux/CheckColumn.js"></script>
  52. <script type="text/javascript" src="<%=basePath %>resource/ux/grid/GridHeaderFilters.js"></script>
  53. <script type="text/javascript">
  54. Ext.Loader.setConfig({
  55. enabled: true
  56. });//开启动态加载
  57. Ext.application({
  58. name: 'erp',//为应用程序起一个名字,相当于命名空间
  59. appFolder: basePath+'app',//app文件夹所在路径
  60. controllers: [//声明所用到的控制层
  61. 'ma.update.UpdateScheme'
  62. ],
  63. launch: function() {
  64. Ext.create('erp.view.ma.update.UpdateScheme');//创建视图
  65. }
  66. });
  67. var caller = "UpdateScheme";
  68. var formCondition = '';
  69. var gridCondition = '';
  70. var dataCount=0;
  71. var pageSize = parseInt(window.innerHeight*0.6/25);
  72. var msg = '';
  73. var page = 1;
  74. var condition='';
  75. var which = 'form';
  76. var key = 'empnames_';
  77. </script>
  78. </head>
  79. <body >
  80. </body>
  81. </html>