checkbase.jsp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  12. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  13. <style type="text/css">
  14. .x-form-field-cir-focus{
  15. -moz-box-shadow:1px 1px 2px rgba(0,0,0,.2);
  16. -webkit-box-shadow:1px 1px 2px rgba(0,0,0,.2);
  17. box-shadow:1px 1px 2px rgba(0,0,0,.2);
  18. -moz-border-radius:5px;
  19. -webkit-border-radius:5px;
  20. border-radius:5px;
  21. background: #ffffff !important;
  22. border: 1px solid #CD950C !important;
  23. }
  24. </style>
  25. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  26. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  27. <script type="text/javascript">
  28. Ext.Loader.setConfig({
  29. enabled: true
  30. });//开启动态加载
  31. Ext.application({
  32. name: 'erp',//为应用程序起一个名字,相当于命名空间
  33. appFolder: basePath+'app',//app文件夹所在路径
  34. controllers: [//声明所用到的控制层
  35. 'plm.test.CheckBase'
  36. ],
  37. launch: function() {
  38. Ext.create('erp.view.plm.test.CheckBase');//创建视图
  39. }
  40. });
  41. var caller = 'CheckListBaseDetail';
  42. var emid = '<%=session.getAttribute("em_uu")%>';
  43. var emname='<%=session.getAttribute("em_name")%>';
  44. var formCondition = "" ;
  45. var gridCondition="";
  46. </script>
  47. </head>
  48. <body >
  49. </body>
  50. </html>