hookehuyr

fix(ActivitiesCover): 修复分享海报路由

- 修改 onSharePoster 跳转到 PosterCheckin(老页面)
- ActivitiesCover 使用老 API,应该跳转到使用老 API 的海报页面
- ActivitiesDetail 继续跳转到 PosterCheckinDetail(新页面)
...@@ -629,7 +629,7 @@ defineExpose({ ...@@ -629,7 +629,7 @@ defineExpose({
629 const onSharePoster = () => { 629 const onSharePoster = () => {
630 console.log('分享海报') 630 console.log('分享海报')
631 Taro.navigateTo({ 631 Taro.navigateTo({
632 - url: '/pages/PosterCheckinDetail/index', 632 + url: '/pages/PosterCheckin/index',
633 }) 633 })
634 } 634 }
635 635
......