No Description

home.html 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  8. <link rel="stylesheet" href="../layui/css/layui.mobile.css" />
  9. <link href="../css/mui.min.css" rel="stylesheet" />
  10. <link rel="stylesheet" href="../css/iconfont.css" />
  11. <link rel="stylesheet" href="../css/inits.css" />
  12. <title>首页</title>
  13. <style>
  14. body{
  15. width: 100vx;
  16. height: 100vh;
  17. background-color: #fff !important;
  18. }
  19. .mui-content {
  20. background-color: #fff !important;
  21. margin-top: 70px;
  22. }
  23. .logo{
  24. width: 150px;
  25. height: 150px;
  26. display: block;
  27. margin: 0 auto 0;
  28. margin-bottom: 10px;
  29. }
  30. .btn {
  31. width: 75%;
  32. margin: 50px auto 0px;
  33. background-color: #1ba3c9;
  34. outline: none;
  35. border: none;
  36. padding: 11px 12px;
  37. display: block;
  38. border-radius: 20px;
  39. font-size: 16px;
  40. color: #fff;
  41. }
  42. .topBtn{
  43. background-color: #fb9703;
  44. }
  45. .topBtn:active{
  46. background-color: #fb9703;
  47. }
  48. .title{
  49. text-align: center;
  50. width: 260px;
  51. font-size: 24px;
  52. margin: 0 auto;
  53. line-height: 35px;
  54. font-family: cursive;
  55. font-weight: 600;
  56. }
  57. </style>
  58. </head>
  59. <body>
  60. <div class="mui-content">
  61. <img src="../img/logo.png" alt="" class="logo">
  62. <div class="title">安阳12345政务服务热线为您服务</div>
  63. <button type="button" class="btn topBtn">咨询、建议、投诉</button>
  64. <button type="button" class="btn bottomBtn">问题结果查询</button>
  65. </div>
  66. <script src="layui/layui.js"></script>
  67. <script src="../js/mui.min.js"></script>
  68. <script src="../layui/layui.js"></script>
  69. <script src="../js/zepto.js"></script>
  70. <script src="../Script/Common/huayi.config.js"></script>
  71. <script src="../Script/Common/huayi.http.js"></script>
  72. <script>
  73. var openid = "obwtK6JT-bTCeSbtqu4lkw4lIz0o";
  74. // var openid = helper.cookies.get("openid");
  75. if (!openid) {
  76. window.location.replace("../html/error.html");
  77. }
  78. $('.topBtn').click(function(){
  79. window.location.replace("../html/addWorkOrder.html");
  80. })
  81. $('.bottomBtn').click(function(){
  82. window.location.replace("../html/login.html");
  83. })
  84. </script>
  85. </body>
  86. </html>