5 lines
206 B
TypeScript
5 lines
206 B
TypeScript
export const explainGuideStopListUrl = (hallId: string, hallName = '讲解') => {
|
|
const params = new URLSearchParams({ hallId, hallName })
|
|
return `/pages/explain/guide-stop-list?${params.toString()}`
|
|
}
|