hookehuyr

fix: 在跳转上传页面时添加from参数以标识来源

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-08-29 17:20:18 4 + * @LastEditTime: 2025-09-03 17:18:12
5 * @FilePath: /map-demo/src/views/checkin/info.vue 5 * @FilePath: /map-demo/src/views/checkin/info.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -551,7 +551,7 @@ const checkIn = async () => { // 打卡 ...@@ -551,7 +551,7 @@ const checkIn = async () => { // 打卡
551 confirmButtonText: '去上传图片', 551 confirmButtonText: '去上传图片',
552 }).then(() => { 552 }).then(() => {
553 // 后续上传图片页面 553 // 后续上传图片页面
554 - wx.miniProgram.navigateTo({ url: '/pages/UploadMedia/index' }); 554 + wx.miniProgram.navigateTo({ url: '/pages/UploadMedia/index?from=checkin' });
555 }); 555 });
556 } else { 556 } else {
557 show_toast.value = true; 557 show_toast.value = true;
......