cazhengshu.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <!DOCTYPE html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>证书管理</title>
  5. <meta name="author" content="yihu.com" />
  6. <meta name="format-detection" content="telephone=no" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0" />
  8. <meta name="apple-mobile-web-app-capable" content="yes" />
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  10. <link rel="stylesheet" type="text/css" href="../../../common/cross/css/cross.css">
  11. <link rel="stylesheet" href="../../../common/cross/css/cross.ui.css" type="text/css" />
  12. <link rel="stylesheet" type="text/css" href="../../../common/css/jy-style.css">
  13. <link rel="stylesheet" type="text/css" href="../../../common/css/doc-style.css" />
  14. <style>
  15. .textwb{
  16. background: #FFFFFF;
  17. height: 160px;
  18. width: calc(100%-20px);
  19. margin: 10px;
  20. position: relative;
  21. border-radius: 5px;
  22. }
  23. .phice{
  24. width:50px ;
  25. height: 50px;
  26. margin: 0 auto;
  27. position: relative;
  28. top: 10px;
  29. }
  30. .phice>img{
  31. width:100% ;
  32. height: 100%;
  33. }
  34. .txto{
  35. height: 16px;
  36. position: relative;
  37. top: 15px;
  38. font-size: 16px;
  39. font-weight: bolder;
  40. text-align: center;
  41. }
  42. .txtt{
  43. height: 14px;
  44. position: relative;
  45. font-size: 14px;
  46. text-align: center;
  47. color: #909090;
  48. }
  49. .txth{
  50. height: 14px;
  51. position: relative;
  52. font-size: 14px;
  53. text-align: center;
  54. color: #909090;
  55. }
  56. .sqca{
  57. width: 290px;
  58. margin: 30px auto;
  59. background: #17B3EC;
  60. height: 40px;
  61. border-radius: 5px;
  62. text-align: center;
  63. font-size: 16px;
  64. color: #FFFFFF;
  65. line-height: 40px;
  66. }
  67. </style>
  68. </head>
  69. <body>
  70. <div class="h45">
  71. <div class="demo-comtop">
  72. <a class="mui-action-back"></a>
  73. <h1>证书管理</h1>
  74. </div>
  75. </div>
  76. <div class="contain">
  77. <div class="textwb">
  78. <div class="phice">
  79. <img src="../images/zhengshu_wei_icon.png"/>
  80. </div>
  81. <div class="txto">未申请CA认证</div>
  82. <div class="txtt mt30">根据监管部门的要求</div>
  83. <div class="txth mt10">CA认证之后才可以在线处理居民续方申请</div>
  84. </div>
  85. <div class="sqca" style="display: none;">申请CA认证</div>
  86. </div>
  87. <script src="../../../js/jquery/2.1.3/jquery.js"></script>
  88. <script type="text/javascript" src="../../../js/mui.min.js"></script>
  89. <script src="../../../js/common_http.js" type="text/javascript" charset="utf-8"></script>
  90. <script>
  91. var $sqca = $(".sqca");
  92. mui.plusReady(function(){
  93. var self = plus.webview.currentWebview();
  94. var type = self.code;
  95. var d = plus.webview.getWebviewById('tgcarenzheng');
  96. if (type==1) {
  97. $sqca.show();
  98. }
  99. else if (d ) {
  100. $sqca.show();
  101. closePages();
  102. }
  103. })
  104. $sqca.on('click',function(){
  105. mui.openWindow({
  106. id: "shenfenrenzheng",
  107. url: "shenfenrenzheng.html",
  108. extras: {
  109. }
  110. })
  111. })
  112. //关闭页面
  113. function closePages (){
  114. var _page = plus.webview.getWebviewById('tgcarenzheng');
  115. if(_page){
  116. _page.close();
  117. }
  118. }
  119. </script>
  120. </body>
  121. </html>