You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB

2 years ago
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title></title>
  6. <script src="/Scripts/3rd/jquery-2.1.3.min.js"></script>
  7. <script src="/Scripts/lib/Util.min.js"></script>
  8. <style type="text/css">
  9. #showMsg {
  10. margin-left: 47%;
  11. font-size: 25px;
  12. }
  13. .maindiv {
  14. margin-top: 10%;
  15. }
  16. </style>
  17. <script type="text/javascript">
  18. $(function () {
  19. var sPageTile = getUrlParam('PageTile');
  20. $('#showMsg').text(sPageTile == 'W' ? '維護中...' : sPageTile == 'N' ? '已停用' : '');
  21. });
  22. </script>
  23. </head>
  24. <body>
  25. <form>
  26. <div class="maindiv">
  27. <span id="showMsg">維修中...</span>
  28. <div style="text-align: center; vertical-align: middle;">
  29. <img src="../images/waitprocess.jpg" />
  30. </div>
  31. <br class="clear" />
  32. </div>
  33. </form>
  34. </body>
  35. </html>