No Description

examineIng.html 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta content="yes" name="apple-mobile-web-app-capable">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
  7. <title>审核中</title>
  8. <link rel="stylesheet" type="text/css" href="../common/reset.css"/>
  9. <script type="text/javascript" src="../common/jquery-2.1.0.js"></script>
  10. <script type="text/javascript">
  11. document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
  12. window.onresize = function(){
  13. document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
  14. }
  15. </script>
  16. <style>
  17. body{
  18. width: 100%;min-height: 100vh;background: #ffffff;padding-top: 1rem;box-sizing: border-box;
  19. }
  20. .bgImg{
  21. width: 1.61rem;margin: auto;
  22. }
  23. .status{
  24. color: #2C72E0;
  25. font-size: 0.18rem;
  26. line-height: 0.25rem;
  27. text-align: center;
  28. margin-top: 0.27rem;
  29. }
  30. .hint{
  31. font-size: 0.12rem;color: #999999;text-align: center;position: fixed;bottom: 1rem;left: 0;right: 0;margin: auto;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="container">
  37. <img class="bgImg" src="" />
  38. <p class="status">审核中...</p>
  39. <p class="hint">审核通过后,会有电话通知您,请注意接听来电。</p>
  40. </div>
  41. <!--提示弹框-->
  42. <div class="alert-info" style="display: none;">
  43. <!-- tip提示,2s后消失 -->
  44. <p></p>
  45. </div>
  46. </div>
  47. </body>
  48. </html>
  49. <script>
  50. var qs = parseQueryString(window.location.href);
  51. $().ready(function () {
  52. if(qs.type == 2){
  53. $(".bgImg").attr('src','./img/examineIng02.png')
  54. $(".status").css('color','#DBC6A1')
  55. }else{
  56. $(".bgImg").attr('src','./img/examineIng03.png')
  57. }
  58. })
  59. function goApply () {
  60. window.location.href='./identity-authentication.html'
  61. }
  62. //获取地址栏参数
  63. function parseQueryString(url) {
  64. var urlObj = {};
  65. var reg = /([^?=&]+)=([^?=&]+)/g;
  66. url.replace(reg, function($0, $1, $2) {
  67. urlObj[$1] = decodeURIComponent($2);
  68. })
  69. return urlObj;
  70. }
  71. </script>