<!doctype html>
|
<html>
|
<head>
|
<meta charset="utf-8" />
|
<title>更新认证信息</title>
|
<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">
|
|
<!-- js引用 -->
|
<script src="../../js/config.js"></script>
|
<script src="../../js/h5toapp.js"></script>
|
<script src="../../js/h5to.js"></script>
|
<!-- 组件js引用 -->
|
<script src="../../js/mui.min.js"></script>
|
<!-- 组件标准css引用 -->
|
<link rel="stylesheet" href="../../css/mui.min.css">
|
|
<!-- css引用 -->
|
<link href="../../css/currency.css" rel="stylesheet">
|
<link href="../../css/icon/iconfont.css" rel="stylesheet">
|
<link href="../../css/spinkit.css" rel="stylesheet">
|
<!-- 界面本身css引用 -->
|
<link href="./gxrzxx.css" rel="stylesheet">
|
|
<style type="text/css">
|
|
|
</style>
|
</head>
|
|
<body>
|
|
<div style="background-color: #FFFFFF; height: 100vh; width: 100%; margin: 0; overflow: auto;">
|
<div id="loading" class="example">
|
<div class="sk-plane loading_location"></div>
|
</div>
|
|
<div class="mui-content" style="background: #FFFFFF;">
|
|
<div style="margin: 73px 16px 16px;box-sizing: border-box;">
|
<img src="../../img/success_fill.png" class="img_side"/>
|
<div class="tip_txt">您已通过认证!</div>
|
</div>
|
|
<div class="z_menu_btn_row" style="height: 55px; line-height: 55px;margin-top: 71px;" onclick="click_row(menurows[0])">
|
<div class="z_menu_btn_img" style="margin-right: 21px;">
|
<div class="z_menu_btn_img4">
|
<img src="../../img/组%2052.png" />
|
</div>
|
</div>
|
<div class="z_menu_btn_txt" >
|
<span>身份证</span>
|
</div>
|
<div class="z_menu_btn_icon">
|
<img src="../../img/ic_arrow_right.png" />
|
</div>
|
</div>
|
|
<div class="z_menu_btn_row" style="height: 55px; line-height: 55px;" onclick="click_row(menurows[1])">
|
<div class="z_menu_btn_img" style="margin-right: 25px;">
|
<div class="z_menu_btn_img4">
|
<img src="../../img/组%2053.png" />
|
</div>
|
</div>
|
|
<div class="z_menu_btn_txt" >
|
<span>执业证</span>
|
</div>
|
<div class="z_menu_btn_icon">
|
<img src="../../img/ic_arrow_right.png" />
|
</div>
|
</div>
|
|
<div class="z_menu_btn_row" style="height: 55px; line-height: 55px;border: 0;" onclick="click_row(menurows[2])">
|
<div class="z_menu_btn_img" style="margin-right: 25px;">
|
<div class="z_menu_btn_img4">
|
<img src="../../img/组%2054.png" />
|
</div>
|
</div>
|
|
<div class="z_menu_btn_txt" >
|
<span>职称证</span>
|
</div>
|
<div class="z_menu_btn_icon">
|
<img src="../../img/ic_arrow_right.png" />
|
</div>
|
</div>
|
|
<div style="width: 100%;height: 50px; position: absolute; bottom: 20px; display: flex;">
|
<div style="flex:1">
|
<button class="back_button" onclick="click_row(menurows[4])">返回</button>
|
</div>
|
<div style="flex:1">
|
<button class="updata_button" onclick="click_row(menurows[3])">更新证件</button>
|
</div>
|
</div>
|
</div>
|
</div>
|
|
<script type="text/javascript">
|
|
var menurows = [
|
{id: "1", name: "更新身份证", path: "./",_id: 2008},
|
{id: "2", name: "更新执业证", path: "./",_id: 2009},
|
{id: "3", name: "更新职称证", path: "./",_id: 2010},
|
{id: "4", name: "更新认证信息", path: "./",_id: 2008},
|
{id: "5", name: "返回", path: "./grxx",_id: 2000},
|
];
|
// 停止loading
|
var int=self.setInterval("infosetuser()",100);
|
function infosetuser() {
|
if (login_data.userId != "123456") {
|
alert(login_data.userId);
|
window.clearInterval(int);
|
muiInfo();
|
loadinfo();
|
}
|
}
|
|
function muiInfo() {
|
mui.init({
|
swipeBack:true //启用右滑关闭功能
|
});
|
}
|
|
function loadinfo() {
|
|
hideloading("loading");
|
}
|
|
function click_row(row) {
|
var pam = {
|
_id: row._id,
|
params:{
|
userId: login_data.id
|
}
|
};
|
app_click("route", pam, callback);
|
}
|
|
</script>
|
</body>
|
</html>
|
|