| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <link rel="stylesheet" href="../layui/css/layui.mobile.css" />
- <link href="../css/mui.min.css" rel="stylesheet" />
- <link rel="stylesheet" href="../css/iconfont.css" />
- <link rel="stylesheet" href="../css/inits.css" />
- <title>首页</title>
- <style>
- body{
- width: 100vx;
- height: 100vh;
- background-color: #fff !important;
- }
- .mui-content {
- background-color: #fff !important;
- margin-top: 70px;
- }
- .logo{
- width: 150px;
- height: 150px;
- display: block;
- margin: 0 auto 0;
- margin-bottom: 10px;
- }
- .btn {
- width: 75%;
- margin: 50px auto 0px;
- background-color: #1ba3c9;
- outline: none;
- border: none;
- padding: 11px 12px;
- display: block;
- border-radius: 20px;
- font-size: 16px;
- color: #fff;
- }
- .topBtn{
- background-color: #fb9703;
- }
- .topBtn:active{
- background-color: #fb9703;
- }
- .title{
- text-align: center;
- width: 260px;
- font-size: 24px;
- margin: 0 auto;
- line-height: 35px;
- font-family: cursive;
- font-weight: 600;
- }
- </style>
- </head>
- <body>
- <div class="mui-content">
- <img src="../img/logo.png" alt="" class="logo">
- <div class="title">安阳12345政务服务热线为您服务</div>
- <button type="button" class="btn topBtn">咨询、建议、投诉</button>
- <button type="button" class="btn bottomBtn">问题结果查询</button>
- </div>
- <script src="layui/layui.js"></script>
- <script src="../js/mui.min.js"></script>
- <script src="../layui/layui.js"></script>
- <script src="../js/zepto.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <script src="../Script/Common/huayi.http.js"></script>
- <script>
- var openid = "obwtK6JT-bTCeSbtqu4lkw4lIz0o";
- // var openid = helper.cookies.get("openid");
- if (!openid) {
- window.location.replace("../html/error.html");
- }
- $('.topBtn').click(function(){
- window.location.replace("../html/addWorkOrder.html");
- })
- $('.bottomBtn').click(function(){
- window.location.replace("../html/login.html");
- })
- </script>
- </body>
- </html>
|