1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>审核中</title>
- <link rel="stylesheet" type="text/css" href="../common/reset.css"/>
- <script type="text/javascript" src="../common/jquery-2.1.0.js"></script>
- <script type="text/javascript">
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function(){
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
- </script>
- <style>
- body{
- width: 100%;min-height: 100vh;background: #ffffff;padding-top: 1rem;box-sizing: border-box;
- }
- .bgImg{
- width: 1.61rem;margin: auto;
- }
- .status{
- color: #2C72E0;
- font-size: 0.18rem;
- line-height: 0.25rem;
- text-align: center;
- margin-top: 0.27rem;
- }
- .hint{
- font-size: 0.12rem;color: #999999;text-align: center;position: fixed;bottom: 1rem;left: 0;right: 0;margin: auto;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <img class="bgImg" src="" />
- <p class="status">审核中...</p>
- <p class="hint">审核通过后,会有电话通知您,请注意接听来电。</p>
- </div>
- <!--提示弹框-->
- <div class="alert-info" style="display: none;">
- <!-- tip提示,2s后消失 -->
- <p></p>
- </div>
- </div>
- </body>
- </html>
- <script>
- var qs = parseQueryString(window.location.href);
- $().ready(function () {
- if(qs.type == 2){
- $(".bgImg").attr('src','./img/examineIng02.png')
- $(".status").css('color','#DBC6A1')
- }else{
- $(".bgImg").attr('src','./img/examineIng03.png')
- }
- })
- function goApply () {
- window.location.href='./identity-authentication.html'
- }
- //获取地址栏参数
- function parseQueryString(url) {
- var urlObj = {};
- var reg = /([^?=&]+)=([^?=&]+)/g;
- url.replace(reg, function($0, $1, $2) {
- urlObj[$1] = decodeURIComponent($2);
- })
- return urlObj;
- }
- </script>
|