|
@@ -315,7 +315,15 @@ onMounted(async () => {
|
|
|
data: tag,
|
|
|
});
|
|
|
} else if (tag.type == "applet_link") {
|
|
|
- browser.openLink(tag.hotContent.liveLink);
|
|
|
+ try {
|
|
|
+ document.querySelector(`[data-tag-id="${tag.sid}"] .tag-icon`).style.display = "none";
|
|
|
+ let hotcontent = JSON.parse(tag.hotContent);
|
|
|
+ browser.openLink(
|
|
|
+ "/subPackage/pages/home/home?pageType=2&pageId=" + hotcontent.liveLink,
|
|
|
+ `https://m.cdfmembers.com/shop/600667208/showactivity?pageId=${hotcontent.liveLink}`,
|
|
|
+ `/pages/showactivity/showactivity?pageId=${hotcontent.liveLink}`
|
|
|
+ );
|
|
|
+ } catch (error) {}
|
|
|
} else if (tag.type == "link_scene") {
|
|
|
let sceneFirstView = tag.hotContent.sceneFirstView;
|
|
|
window.location.href = jumpNewScene(sceneFirstView);
|