修复:无戒指时点确定改为打开商店浮窗而非新标签页

This commit is contained in:
2026-03-01 15:47:01 +08:00
parent 4a9730c38d
commit 3132f013b7
@@ -762,7 +762,10 @@
'需要结婚戒指' '需要结婚戒指'
); );
if (goShop) { if (goShop) {
window.open('/shop', '_blank'); // 直接打开当前页面的商店浮窗(toolbar 中的 openShopModal
if (typeof window.openShopModal === 'function') {
window.openShopModal();
}
} }
return; return;
} }