Authored by 李奇

品牌跳转规则修改

... ... @@ -30,9 +30,6 @@ function BrandHrefBinding(el, binding) {
if (yoho.isYohoBuy && shopId) {
let { shopName, shopTemplateType, isRedShop } = binding.value;
if (isRedShop === 1) {
shopTemplateType = '1';
}
let goParams = {
action: 'go.shop',
params: {
... ... @@ -45,9 +42,11 @@ function BrandHrefBinding(el, binding) {
href += `?openby:yohobuy=${JSON.stringify(goParams)}`;
el.href = href;
return;
}
if (yoho.isYohoBuy && !shopId) {
yoho.ready(function () {
yoho.getAppVersion({}, (version) => {
if (version >= '6.5.5') {
let { name } = binding.value;
... ... @@ -64,7 +63,11 @@ function BrandHrefBinding(el, binding) {
el.href = href;
}
});
});
return;
}
el.href = href;
} else {
el.href = `/product/shop/${binding.value}`;
}
... ...
... ... @@ -67,7 +67,7 @@ const yoho = {
},
ready(callback) {
if (this.isApp) {
if (this.isApp || this.isYohoBuy) {
document.addEventListener('deviceready', callback);
} else {
return callback();
... ... @@ -118,7 +118,7 @@ const yoho = {
* @param fail
*/
getAppVersion(args, success, fail) {
if (this.isApp && window.yohoInterface) {
if (window.yohoInterface) {
window.yohoInterface.triggerEvent(success || nullFun, fail || nullFun, {
method: 'get.appversion',
arguments: args
... ...