refactor: 修改分享逻辑和还原旧页面
- 在 app.config.js 中注册 PosterCheckinDetail 页面 - 修改 ActivitiesCover 分享海报逻辑跳转到新页面 - 修改 ActivitiesDetail 分享海报逻辑跳转到新页面 - 还原 PosterCheckin 到旧接口(map.js) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Showing
3 changed files
with
3 additions
and
2 deletions
| ... | @@ -36,6 +36,7 @@ export default { | ... | @@ -36,6 +36,7 @@ export default { |
| 36 | 'pages/UploadMedia/index', | 36 | 'pages/UploadMedia/index', |
| 37 | 'pages/FamilyRank/index', | 37 | 'pages/FamilyRank/index', |
| 38 | 'pages/PosterCheckin/index', | 38 | 'pages/PosterCheckin/index', |
| 39 | + 'pages/PosterCheckinDetail/index', | ||
| 39 | 'pages/CheckinList/index', | 40 | 'pages/CheckinList/index', |
| 40 | 'pages/CheckinMap/index', | 41 | 'pages/CheckinMap/index', |
| 41 | 'pages/JoinOrganization/index', | 42 | 'pages/JoinOrganization/index', | ... | ... |
| ... | @@ -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/PosterCheckin/index', | 632 | + url: '/pages/PosterCheckinDetail/index', |
| 633 | }) | 633 | }) |
| 634 | } | 634 | } |
| 635 | 635 | ... | ... |
| ... | @@ -634,7 +634,7 @@ defineExpose({ | ... | @@ -634,7 +634,7 @@ defineExpose({ |
| 634 | const onSharePoster = () => { | 634 | const onSharePoster = () => { |
| 635 | console.log('分享海报') | 635 | console.log('分享海报') |
| 636 | Taro.navigateTo({ | 636 | Taro.navigateTo({ |
| 637 | - url: '/pages/PosterCheckin/index', | 637 | + url: '/pages/PosterCheckinDetail/index', |
| 638 | }) | 638 | }) |
| 639 | } | 639 | } |
| 640 | 640 | ... | ... |
-
Please register or login to post a comment