SMTMonitor.jsp.svn-base 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <script type="text/javascript">
  16. var basePath='<%=basePath %>';
  17. Ext.Loader.setConfig({
  18. enabled: true
  19. });//开启动态加载
  20. Ext.application({
  21. name: 'erp',//为应用程序起一个名字,相当于命名空间
  22. appFolder: basePath+'app',//app文件夹所在路径
  23. controllers: [//声明所用到的控制层
  24. 'pm.mes.SMTMonitor'
  25. ],
  26. launch: function() {
  27. Ext.create('erp.view.pm.mes.SMTMonitor');//创建视图
  28. }
  29. });
  30. var caller='SMTMonitor';
  31. </script>
  32. <style type="text/css">
  33. body{
  34. background-color: #E8E8E8;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <audio id="audio-error" src= "<%=basePath %>resource/audio/ALARM3.WAV"></audio>
  40. </body>
  41. </html>