同步移动端源码并修复小程序嵌入标题
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
lyf
2026-07-28 18:37:40 +08:00
parent 06ad609e1f
commit 540bb8627f
62 changed files with 4196 additions and 1410 deletions

View File

@@ -1,13 +1,4 @@
type ExplainGuideStopListNavigationOptions = {
returnToHallList?: boolean
}
export const explainGuideStopListUrl = (
hallId: string,
hallName = '讲解',
options: ExplainGuideStopListNavigationOptions = {}
) => {
export const explainGuideStopListUrl = (hallId: string, hallName = '讲解') => {
const params = new URLSearchParams({ hallId, hallName })
if (options.returnToHallList) params.set('returnToHallList', '1')
return `/pages/explain/guide-stop-list?${params.toString()}`
}