123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <!DOCTYPE html>
- <head>
- <meta charset="UTF-8">
- <title>证书管理</title>
- <meta name="author" content="yihu.com" />
- <meta name="format-detection" content="telephone=no" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <link rel="stylesheet" type="text/css" href="../../../common/cross/css/cross.css">
- <link rel="stylesheet" href="../../../common/cross/css/cross.ui.css" type="text/css" />
- <link rel="stylesheet" type="text/css" href="../../../common/css/jy-style.css">
- <link rel="stylesheet" type="text/css" href="../../../common/css/doc-style.css" />
- <style>
- .textwb{
- background: #FFFFFF;
- height: 160px;
- width: calc(100%-20px);
- margin: 10px;
- position: relative;
- border-radius: 5px;
- }
- .phice{
- width:50px ;
- height: 50px;
- margin: 0 auto;
- position: relative;
- top: 10px;
- }
- .phice>img{
- width:100% ;
- height: 100%;
-
- }
- .txto{
- height: 16px;
- position: relative;
- top: 15px;
- font-size: 16px;
- font-weight: bolder;
- text-align: center;
- }
- .txtt{
- height: 14px;
- position: relative;
- font-size: 14px;
- text-align: center;
- color: #909090;
-
- }
- .txth{
- height: 14px;
- position: relative;
- font-size: 14px;
- text-align: center;
- color: #909090;
-
- }
-
- .sqca{
- width: 290px;
- margin: 30px auto;
- background: #17B3EC;
- height: 40px;
- border-radius: 5px;
- text-align: center;
- font-size: 16px;
- color: #FFFFFF;
- line-height: 40px;
- }
- </style>
- </head>
- <body>
- <div class="h45">
- <div class="demo-comtop">
- <a class="mui-action-back"></a>
- <h1>证书管理</h1>
- </div>
- </div>
- <div class="contain">
- <div class="textwb">
- <div class="phice">
- <img src="../images/zhengshu_wei_icon.png"/>
- </div>
- <div class="txto">未申请CA认证</div>
- <div class="txtt mt30">根据监管部门的要求</div>
- <div class="txth mt10">CA认证之后才可以在线处理居民续方申请</div>
- </div>
- <div class="sqca" style="display: none;">申请CA认证</div>
- </div>
- <script src="../../../js/jquery/2.1.3/jquery.js"></script>
- <script type="text/javascript" src="../../../js/mui.min.js"></script>
- <script src="../../../js/common_http.js" type="text/javascript" charset="utf-8"></script>
- <script>
- var $sqca = $(".sqca");
- mui.plusReady(function(){
- var self = plus.webview.currentWebview();
- var type = self.code;
- var d = plus.webview.getWebviewById('tgcarenzheng');
- if (type==1) {
- $sqca.show();
- }
- else if (d ) {
- $sqca.show();
- closePages();
- }
- })
-
-
-
- $sqca.on('click',function(){
- mui.openWindow({
- id: "shenfenrenzheng",
- url: "shenfenrenzheng.html",
- extras: {
-
- }
- })
- })
-
- //关闭页面
- function closePages (){
- var _page = plus.webview.getWebviewById('tgcarenzheng');
- if(_page){
- _page.close();
- }
- }
-
-
-
- </script>
- </body>
-
- </html>
|