hookehuyr

fix: 修复打卡范围检查后未返回的问题

<!--
* @Date: 2024-09-15 22:08:49
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-09-11 17:34:17
* @LastEditTime: 2025-09-15 12:55:05
* @FilePath: /map-demo/src/views/checkin/info.vue
* @Description: 文件描述
-->
......@@ -560,7 +560,7 @@ const checkIn = async () => { // 打卡
if (!checkInRange(page_details.value.current_lng, page_details.value.current_lat, page_details.value?.position)) {
show_toast.value = true;
toast_text.value = '您不在打卡范围';
// return;
return;
}
if (page_details.value?.position.length) {
......