hookehuyr

fix: 修正打卡成功后跳转链接的参数错误

1 <!-- 1 <!--
2 * @Date: 2024-09-15 22:08:49 2 * @Date: 2024-09-15 22:08:49
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-04 18:43:59 4 + * @LastEditTime: 2025-09-04 20:06:27
5 * @FilePath: /map-demo/src/views/checkin/info.vue 5 * @FilePath: /map-demo/src/views/checkin/info.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -578,7 +578,7 @@ const checkIn = async () => { // 打卡 ...@@ -578,7 +578,7 @@ const checkIn = async () => { // 打卡
578 // 打卡成功后,马上隐藏打卡按钮改成已打卡按钮 578 // 打卡成功后,马上隐藏打卡按钮改成已打卡按钮
579 check_in_status.value = true; 579 check_in_status.value = true;
580 // 后续上传图片页面 580 // 后续上传图片页面
581 - wx.miniProgram.navigateTo({ url: '/pages/UploadMedia/index?from=checkin&id=' + $route.query.id + '&marker_id=' + ($route.query.marker_id || props.info.id) }); 581 + wx.miniProgram.navigateTo({ url: '/pages/UploadMedia/index?from=checkin&id=' + detail_id });
582 }); 582 });
583 583
584 return; 584 return;
......