fix(player): 优化公告/消息详情页布局,隐藏右侧投注单

- 桌面端公告、消息详情页不再展示右侧投注单栏
- Hub 详情区移除重复返回按钮与竖排「查看全部公告」文字
- 左侧公告列表保留返回首页按钮
This commit is contained in:
2026-06-30 16:38:12 +08:00
parent 7f563326d8
commit e4ce5941a5
3 changed files with 11 additions and 4 deletions

View File

@@ -50,6 +50,9 @@ const showBetSlipRail = computed(() => {
const p = route.path;
if (p === '/bets' || p.startsWith('/bets/')) return false;
if (p.startsWith('/wallet') || p.startsWith('/profile')) return false;
if (route.params.id && (p.startsWith('/announcements/') || p.startsWith('/messages/'))) {
return false;
}
return true;
});