assessScheme.jsp 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 type="text/css">
  14. /* .x-grid-row .x-grid-cell {
  15. color: null;
  16. padding:0px;
  17. font: normal 11px tahoma, arial, verdana, sans-serif;
  18. border-color: #ededed;
  19. border-style: solid;
  20. border-width: 1px 0;
  21. border-top-color: #fafafa;
  22. vertical-align: middle;
  23. height: auto !important;
  24. }
  25. .x-grid-cell-inner {
  26. height: auto;
  27. line-height: 26px;
  28. overflow: hidden;
  29. -o-text-overflow: ellipsis;
  30. text-overflow: ellipsis;
  31. padding: 0px;
  32. /*white-space:normal;
  33. word-wrap: break-word;
  34. word-break:break-all;
  35. vertical-align: middle;
  36. text-align:center;
  37. } */
  38. .tdcss{
  39. background-color: #e0e0e0!important;
  40. }
  41. </style>
  42. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  43. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  44. <script type="text/javascript">
  45. Ext.Loader.setConfig({
  46. enabled: true
  47. });//开启动态加载
  48. Ext.application({
  49. name: 'erp',//为应用程序起一个名字,相当于命名空间
  50. appFolder: basePath+'app',//app文件夹所在路径
  51. controllers: [//声明所用到的控制层
  52. 'fs.credit.AssessScheme'
  53. ],
  54. launch: function() {
  55. Ext.create('erp.view.fs.credit.AssessScheme');
  56. }
  57. });
  58. var caller='AssessScheme';
  59. var formCondition = '';
  60. var gridCondition = '';
  61. </script>
  62. </head>
  63. <body >
  64. </body>
  65. </html>