/**
 * Created by  web on 2017/12/5.
 */
$(function () {
    $.ajax({
        url:"https://zhiboweb.yazhaiyabo.com/statDownload/apk",
        dataType:"json",
        type:"get",
        success: function (msg) {
            console.log(msg);

            var html=[];
            html+="<a href="+msg.ApkUrl+"><img src='images/appandroid.png' alt='Ѿ����׿������'></a>"
            html+="<a href="+msg.IOSUrl+"><img src='images/appapple.png' alt='Ѿ��ios����'></a>"
            $(".down").html(html);
            var html2=[];
            html2+="<a href="+msg.ApkUrl+"><img style='margin-right: 40px;' src='images/android.png' alt='Ѿ����׿������'></a>"
            html2+="<a href="+msg.IOSUrl+"><img src='images/ios.png' alt='Ѿ��ios����'/></a>"
            new QRCode(document.getElementById("erwei-boder"), 'http://yabolive.com/Download.html');
            $(".phonedown").html(html2);

        }
    })

})