...
|
...
|
@@ -10,19 +10,27 @@ var qrCheck = { |
|
|
},
|
|
|
|
|
|
init: function() {
|
|
|
var ifr,
|
|
|
var // ifr,
|
|
|
u = navigator.userAgent.toLowerCase(),
|
|
|
isiOS = u.indexOf('os') > -1 || u.indexOf('iphone') > -1 || u.indexOf('mac') > -1 || u.indexOf('ipad') > -1,
|
|
|
qr = this.getQuery('qr');
|
|
|
|
|
|
if (qr && this.getQuery('app_version')) {
|
|
|
location.href = '//m.yohobuy.com/passport/update';
|
|
|
}
|
|
|
|
|
|
if (qr) {
|
|
|
if (isiOS) {
|
|
|
window.location = 'yohobuy://http://m.yohobuy.com/signin.html?qr=' + qr;
|
|
|
} else {
|
|
|
ifr = document.createElement('iframe');
|
|
|
ifr.src = 'yohobuy://http://m.yohobuy.com/signin.html?qr=' + qr;
|
|
|
ifr.style.display = 'none';
|
|
|
document.body.appendChild(ifr);
|
|
|
// 安卓跳下载
|
|
|
location.href = '//m.yohobuy.com/passport/update';
|
|
|
|
|
|
// 安卓暂时不处理
|
|
|
// ifr = document.createElement('iframe');
|
|
|
// ifr.src = 'yohobuy://http://m.yohobuy.com/signin.html?qr=' + qr;
|
|
|
// ifr.style.display = 'none';
|
|
|
// document.body.appendChild(ifr);
|
|
|
}
|
|
|
|
|
|
// time = Date.now();
|
...
|
...
|
|