feat: 临时改造讲解页方案 B 链路

接入展厅列表、展厅讲解点分组生成临时业务单元,并迁移讲解详情播放正文到新接口链路。
This commit is contained in:
lyf
2026-07-02 00:51:27 +08:00
parent e0aeafe062
commit 9efcef5190
14 changed files with 1429 additions and 288 deletions

View File

@@ -203,8 +203,18 @@ const itemMeta = (exhibit: ExplainExhibitViewModel) => {
}
const handleExhibitClick = (exhibit: ExplainExhibitViewModel) => {
const params = new URLSearchParams({
id: exhibit.id,
tab: activeTopTab.value
})
if (exhibit.playTargetType && exhibit.playTargetId) {
params.set('targetType', exhibit.playTargetType)
params.set('targetId', exhibit.playTargetId)
}
uni.navigateTo({
url: `/pages/exhibit/detail?id=${encodeURIComponent(exhibit.id)}&tab=${activeTopTab.value}`
url: `/pages/exhibit/detail?${params.toString()}`
})
}