salaryPsw.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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() + "://"
  6. + request.getServerName() + ":" + request.getServerPort()
  7. + path + "/";
  8. %>
  9. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  10. <html>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <link rel="stylesheet"
  15. href="<%=basePath%>resource/ext/resources/css/ext-all-gray.css"
  16. type="text/css"></link>
  17. <style text/css>
  18. .x-button-icon-check{
  19. background-image: url('<%=basePath%>resource/images/hourglass.png') ;
  20. }
  21. .delete {
  22. background-image: url('<%=basePath%>resource/images/icon/trash.png');
  23. }
  24. </style>
  25. <script type="text/javascript"
  26. src="<%=basePath%>resource/ext/ext-all.js"></script>
  27. <script type="text/javascript" src="<%=basePath%>resource/i18n/i18n.js"></script>
  28. <script type="text/javascript"
  29. src="<%=basePath%>resource/ux/grid/Export.js"></script>
  30. <script type="text/javascript"
  31. src="<%=basePath%>resource/ux/RowExpander.js"></script>
  32. <script type="text/javascript"
  33. src="<%=basePath%>resource/ux/CheckColumn.js"></script>
  34. <script type="text/javascript">
  35. Ext.Loader.setConfig({
  36. enabled : true
  37. });//开启动态加载
  38. Ext.application({
  39. name : 'erp',//为应用程序起一个名字,相当于命名空间
  40. appFolder : basePath + 'app',//app文件夹所在路径
  41. controllers : ['salary.SalaryPsw'],//声明所用到的控制层
  42. launch : function() {
  43. Ext.create('erp.view.salary.SalaryPsw');//创建视图
  44. }
  45. });
  46. var caller = 'SalaryPwd';
  47. var title= getUrlParam('title');
  48. var mobile = '<%=session.getAttribute("em_mobile")%>';
  49. </script>
  50. <title>Insert title here</title>
  51. </head>
  52. <body>
  53. </body>
  54. </html>