Authored by 陈峰

yoho link

... ... @@ -48,7 +48,7 @@ function GoodHrefBinding(el, binding) {
}
};
href += `?yohobuy=${JSON.stringify(goParams)}`;
href += `?openby:yohobuy=${JSON.stringify(goParams)}`;
}
el.href = href;
}
... ...
... ... @@ -58,6 +58,8 @@
}
</style>
<script>
import yoho from 'yoho';
export default {
data() {
return {
... ... @@ -68,6 +70,11 @@
closeBottom() {
this.close = true;
}
},
created() {
if (yoho.isYohoBuy) {
this.close = true;
}
}
};
</script>
... ...