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-08-28 15:24:09 4 + * @LastEditTime: 2025-08-28 17:35:19
5 * @FilePath: /map-demo/src/views/checkin/info.vue 5 * @FilePath: /map-demo/src/views/checkin/info.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -540,7 +540,8 @@ const checkIn = async () => { // 打卡 ...@@ -540,7 +540,8 @@ const checkIn = async () => { // 打卡
540 message: `恭喜您打卡成功`, 540 message: `恭喜您打卡成功`,
541 confirmButtonText: '去上传图片', 541 confirmButtonText: '去上传图片',
542 }).then(() => { 542 }).then(() => {
543 - // TODO: 后续上传图片页面 543 + // 后续上传图片页面
544 + wx.miniProgram.reLaunch({ url: '/pages/UploadMedia/index' });
544 }); 545 });
545 } else { 546 } else {
546 show_toast.value = true; 547 show_toast.value = true;
......