Authored by yyq

ios go.h5 type

... ... @@ -88,7 +88,18 @@ $('#qs-list').on('click', 'li', function() {
}
if (yoho && yoho.isApp) {
yoho.goH5(href);
let link = yoho.parseUrl(href);
yoho.goH5(href, JSON.stringify({
action: 'go.h5',
params: {
islogin: 'N',
type: 14,
updateflag: Date.now() + '',
url: link.path,
param: link.query
}
}));
} else {
window.location.href = href;
}
... ...