encryptConfig.jsp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme() + "://"
  5. + request.getServerName() + ":" + request.getServerPort()
  6. + path + "/";
  7. %>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css"/>
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <style type="text/css">
  15. .mylabel{
  16. font-size: 16px;
  17. font-weight: 600;
  18. /* color: red; */
  19. margin-top: 10px;
  20. float: left;
  21. margin-left: 10px;
  22. }
  23. .myradio{
  24. margin-top: 35px;
  25. margin-left: 10px;
  26. color: black;
  27. }
  28. .labeltext{
  29. color: gray;
  30. margin-left: 45px;
  31. }
  32. </style>
  33. <script type="text/javascript" src="<%=basePath%>resource/ext/ext-all.js"></script>
  34. <script type="text/javascript" src="<%=basePath%>resource/i18n/i18n.js"></script>
  35. <script type="text/javascript">
  36. Ext.Loader.setConfig({
  37. enabled: true
  38. });
  39. Ext.application({
  40. name: 'erp',
  41. appFolder: basePath + 'app',
  42. controllers : [ 'ma.encryptConfig' ],
  43. launch : function() {
  44. Ext.create('erp.view.ma.encryptConfig');
  45. }
  46. });
  47. </script>
  48. </head>
  49. <body>
  50. </body>
  51. </html>