smQuery.jsp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  14. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  15. <style>
  16. .custom-blank .x-grid-cell{
  17. background-color: #F9F7F8;
  18. }
  19. .custom .x-grid-cell{
  20. background-color: #F5F2CD;
  21. }
  22. .custom-alt .x-grid-cell{
  23. background-color: #F3F2F0;
  24. }
  25. .custom-first .x-grid-cell{
  26. border-top-color: #999;
  27. border-top-style: dashed;
  28. background-color: #EEE8CD;
  29. }
  30. .custom-alt-first .x-grid-cell{
  31. border-top-color: #999;
  32. border-top-style: dashed;
  33. background-color: #EAEAEA;
  34. }
  35. .custom-grid .x-grid-row-over .x-grid-cell {
  36. background-color: #BCD2EE;
  37. border-bottom-color: #999;
  38. border-top-color: #999;
  39. }
  40. .custom-grid .x-grid-row-selected .x-grid-cell {
  41. background-color: #BCD2EE !important;
  42. }
  43. </style>
  44. <script type="text/javascript">
  45. Ext.Loader.setConfig({
  46. enabled: true
  47. });
  48. Ext.application({
  49. name: 'erp',
  50. appFolder: basePath + 'app',
  51. controllers: [ 'fa.ars.SmQuery' ],
  52. launch: function() {
  53. Ext.create('erp.view.fa.ars.SmQuery');
  54. }
  55. });
  56. var caller = 'SellerMonth!Query';
  57. var gridCondition = '';
  58. </script>
  59. </head>
  60. <body >
  61. </body>
  62. </html>