b2cBatchDeal.jsp 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ux/css/CheckHeader.css" />
  14. <style type="text/css">
  15. .custom-turned .x-grid-cell {
  16. background: #ffdab9 !important;
  17. font-style: italic !important;
  18. border-color: #ededed;
  19. border-style: solid;
  20. border-width: 1px 0;
  21. border-top-color: #fafafa;
  22. height: 26px;
  23. line-height: 26px
  24. }
  25. .custom-turned .x-grid-cell-inner {
  26. background: #ffdab9 !important;
  27. font-style: italic !important;
  28. }
  29. </style>
  30. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  31. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  32. <script type="text/javascript" src="<%=basePath %>resource/ux/CheckColumn.js"></script>
  33. <script type="text/javascript">
  34. Ext.Loader.setConfig({
  35. enabled: true
  36. });//开启动态加载
  37. Ext.application({
  38. name: 'erp',//为应用程序起一个名字,相当于命名空间
  39. appFolder: basePath+'app',//app文件夹所在路径
  40. controllers: [//声明所用到的控制层
  41. 'b2c.common.b2cBatchDeal'
  42. ],
  43. launch: function() {
  44. Ext.create('erp.view.b2c.common.Viewport');
  45. }
  46. });
  47. var caller = getUrlParam('whoami');
  48. caller = caller.replace(/'/g, "");
  49. var urlcondition = getUrlParam('urlcondition');
  50. </script>
  51. </head>
  52. <body>
  53. </body>
  54. </html>