<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><link rel=icon type=image/x-icon href=@/../static/images/favicon.ico><meta name=viewport content="width=device-width,initial-scale=1" id=viewport><link rel=stylesheet href=@/../static/iconfont.css><meta http-equiv=Cache-Control content="no-cache, no-store, must-revalidate"><meta http-equiv=Pragma content=no-cache><meta http-equiv=Expires content=0><meta name=description content=平安官网，通过一账通，仅需一个账户，可管理平安全集团所有平安账户和50多个其他机构的网上账户资产。平台提供平安保险、贷款、理财等中高端金融产品，实现资产+营销一站式服务。><meta name=keywords content=平安、旅行保险、意外保险、健康保险、居家财险、企业保险、贷款、理财、投资><title>平安一账通官网</title><style>html,
        body,
        #app {
            width: 100%;
            height: 100%;
            /*          min-width: 1400px;*/
        }</style><script src=@/../static/iconfont.js></script><script src=@/../static/agent.min.js></script><script src=@/../static/jquery.js></script><link href=./static/css/index.1b258a018306cd1d4d92de413c09cbb3.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.b650291bf5fb82be0c64.js></script><script type=text/javascript src=./static/js/vendor.ac1d8df92f1fc5e05a12.js></script><script type=text/javascript src=./static/js/index.4b7108f021b44d915c00.js></script></body><script>var Ajax = {
        get: function(url, fn) {
            // XMLHttpRequest对象用于在后台与服务器交换数据
            var xhr = new XMLHttpRequest();
            xhr.open('GET', url, true);
            xhr.onreadystatechange = function() {
                // readyState == 4说明请求已完成
                if (xhr.readyState == 4 && xhr.status == 200 || xhr.status == 304) {
                    // 从服务器获得数据
                    fn.call(this, xhr.responseText);
                }
            };
            xhr.send();
        },
        // datat应为'a=a1&b=b1'这种字符串格式，在jq里如果data为对象会自动将对象转成这种字符串格式
        post: function(url, data, fn) {
            var xhr = new XMLHttpRequest();
            xhr.open("POST", url, true);
            // 添加http头，发送信息至服务器时内容编码类型
            xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
            xhr.onreadystatechange = function() {
                if (xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)) {
                    fn.call(this, xhr.responseText);
                }
            };
            xhr.send(data);
        }
    };

    function ExitPerbank() {
        Ajax.get("/pa/paone-service/logout.do" + '?_t=' + (+new Date()), function(res) {
            var ret = JSON.parse(res)
            if (ret.returnCode == '0') {
                sessionStorage.removeItem('loginInfo');
                window.location.reload();
            }
        })
        //        $.ajax({
        //            url:'/pa/paone-service/logout.do',
        //            type:'get',
        //            success:function(res){
        //                if (res.returnCode == '0') {
        //                    sessionStorage.removeItem('loginInfo');
        //                    window.location.reload();
        //                }
        //            }
        //        })
    }

    function smallScale() {
        var width = document.documentElement.clientWidth || document.body.clientWidth;
        var meta = document.getElementById('viewport');
        if (width < 1440) {
            var scale = (width / 1400).toFixed(2);
            meta.content = 'width=device-width,initial-scale=' + scale;
        }
    }


    let flag = navigator.userAgent.match(
        /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
        );
    if(!flag){
        smallScale();
        // ie8 下显示提示信息
        var DEFAULT_VERSION = 8.0;
        var ua = navigator.userAgent.toLowerCase();
        var isIE = ua.indexOf("msie") > -1;
        var safariVersion;
        if (isIE) {
            safariVersion = ua.match(/msie ([\d.]+)/)[1];
        }
        if (safariVersion <= DEFAULT_VERSION) {
            // 进行你所要的操作
            var html = '<div class="low_version">系统检测到您正在使用ie8以下内核的浏览器，不能实现完美体验，请及时更新浏览器版本！</div>';
            document.getElementById('app').innerHTML = html;
        };
    }</script></html>