businessConditionYSB.jsp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. #win-body{text-align:center;border:none}
  17. .x-window-body-default {
  18. border-color: #bcb1b0;
  19. border-width: 1px;
  20. background: none;
  21. color: black;
  22. }
  23. </style>
  24. <script type="text/javascript">
  25. Ext.Loader.setConfig({
  26. enabled: true
  27. });//开启动态加载
  28. Ext.application({
  29. name: 'erp',//为应用程序起一个名字,相当于命名空间
  30. appFolder: basePath+'app',//app文件夹所在路径
  31. controllers: [//声明所用到的控制层
  32. 'fs.cust.BusinessConditionYSB'
  33. ],
  34. launch: function() {
  35. Ext.create('erp.view.fs.cust.BusinessConditionYSB');
  36. }
  37. });
  38. var caller = 'BusinessConditionYSB';
  39. var formCondition = getUrlParam('formCondition');
  40. var gridCondition = '';
  41. var condition = getUrlParam('gridCondition');
  42. var readOnly = getUrlParam('readOnly');
  43. </script>
  44. </head>
  45. <body >
  46. </body>
  47. </html>