editQoute.jsp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  15. <script type="text/javascript" src="<%=basePath %>resource/ux/grid/GridHeaderFilters.js"></script>
  16. <script type="text/javascript" src="<%=basePath %>resource/ux/data/PagingMemoryProxy.js"></script>
  17. <style type="text/css">
  18. .x-form-display-field {
  19. width: 475px;
  20. overflow: hidden;
  21. white-space: nowrap;
  22. text-overflow: ellipsis;
  23. }
  24. .x-form-display-field {
  25. font-size: 14px;
  26. color: blue;
  27. /* font-weight: 600; */
  28. }
  29. </style>
  30. <script type="text/javascript">
  31. Ext.Loader.setConfig({
  32. enabled: true
  33. });//开启动态加载
  34. Ext.application({
  35. name: 'erp',//为应用程序起一个名字,相当于命名空间
  36. appFolder: basePath+'app',//app文件夹所在路径
  37. controllers: [//声明所用到的控制层
  38. 'common.editQoute'
  39. ],
  40. launch: function() {
  41. Ext.create('erp.view.common.editQoute');
  42. }
  43. });
  44. var bc_id = getUrlParam('bc_id');
  45. var bench = getUrlParam('bench');
  46. var caller = 'editQouteWin';
  47. </script>
  48. </head>
  49. <body >
  50. </body>
  51. </html>