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 20:06:27 4 + * @LastEditTime: 2025-09-05 21:35:50
5 * @FilePath: /map-demo/src/views/checkin/info.vue 5 * @FilePath: /map-demo/src/views/checkin/info.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -560,8 +560,7 @@ const checkIn = async () => { // 打卡 ...@@ -560,8 +560,7 @@ const checkIn = async () => { // 打卡
560 if (!checkInRange(page_details.value.current_lng, page_details.value.current_lat, page_details.value?.position)) { 560 if (!checkInRange(page_details.value.current_lng, page_details.value.current_lat, page_details.value?.position)) {
561 show_toast.value = true; 561 show_toast.value = true;
562 toast_text.value = '您不在打卡范围'; 562 toast_text.value = '您不在打卡范围';
563 - // TODO: 测试屏蔽掉 563 + return;
564 - // return;
565 } 564 }
566 565
567 if (page_details.value?.position.length) { 566 if (page_details.value?.position.length) {
......