Files
frontend-miniapp/src/utils/explainNavigation.ts
lyf 2fb70fa1e3
Some checks failed
CI / verify (push) Has been cancelled
修复讲解详情返回对象列表
2026-07-28 12:22:58 +08:00

14 lines
414 B
TypeScript

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