FreezeCheck.jsp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <link rel="stylesheet" type="text/css" 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>
  14. .custom-label {
  15. color: red;
  16. font-size: 15px;
  17. font-weight: bold;
  18. }
  19. .loading {
  20. background-image: url("<%=basePath %>resource/images/loading.gif") !important;
  21. background-position: center;
  22. background-repeat: no-repeat;
  23. }
  24. .custom-field {
  25. margin-left: 10px;
  26. color: #666;
  27. font-weight: normal;
  28. }
  29. .checked {
  30. margin-left: 30% !important;
  31. background-image: url("<%=basePath %>resource/images/renderer/finishrecord.png") !important;
  32. background-repeat: no-repeat;
  33. background-position: center;
  34. color: blue;
  35. }
  36. .error {
  37. background-image: url("<%=basePath %>resource/images/renderer/important.png") !important;
  38. background-repeat: no-repeat;
  39. background-position: center;
  40. color: red;
  41. font-weight: normal;
  42. }
  43. .detail {
  44. cursor: pointer;
  45. color: blue;
  46. text-decoration: underline;
  47. }
  48. .custom .x-grid-row, .custom .x-grid-row .x-grid-cell,.custom .x-grid-cell-inner {
  49. height: auto !important;
  50. }
  51. </style>
  52. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  53. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  54. <script type="text/javascript">
  55. /**
  56. * 期末对账检查
  57. */
  58. Ext.Loader.setConfig({
  59. enabled: true
  60. });//开启动态加载
  61. Ext.application({
  62. name: 'erp',//为应用程序起一个名字,相当于命名空间
  63. appFolder: basePath+'app',//app文件夹所在路径
  64. controllers: [//声明所用到的控制层
  65. 'scm.reserve.FreezeCheck'
  66. ],
  67. launch: function() {
  68. Ext.create('erp.view.scm.reserve.FreezeCheck');
  69. }
  70. });
  71. var caller = 'FreezeCheck';
  72. </script>
  73. </head>
  74. <body >
  75. </body>
  76. </html>