monthAccount.jsp.svn-base 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. .isCount .x-grid-cell{
  15. font-style: italic;
  16. background-color: #FFE4B5;
  17. }
  18. .x-panel-with-col-lines .x-grid-row .cell-split.x-grid-cell{
  19. border-right-style: dashed !important;
  20. border-right-color: #999 !important;
  21. }
  22. </style>
  23. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  24. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  25. <script type="text/javascript">
  26. /**
  27. * 期末对账
  28. */
  29. Ext.Loader.setConfig({
  30. enabled: true
  31. });//开启动态加载
  32. Ext.application({
  33. name: 'erp',//为应用程序起一个名字,相当于命名空间
  34. appFolder: basePath+'app',//app文件夹所在路径
  35. controllers: [//声明所用到的控制层
  36. 'fa.ars.MonthAccount'
  37. ],
  38. launch: function() {
  39. Ext.create('erp.view.fa.ars.MonthAccount');
  40. }
  41. });
  42. var caller = 'MonthAccount';
  43. </script>
  44. </head>
  45. <body >
  46. </body>
  47. </html>