From 127a75c0a82cf500572723eeb651c3481a7fb1be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B2=E5=85=B8=E5=8D=93?= Date: Fri, 16 May 2025 09:58:21 +0800 Subject: [PATCH] =?UTF-8?q?flat:=20=E6=9A=82=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/nearby/nearby.vue | 1 - pages/search/search.vue | 2 +- stores/useLocationStore.js | 2 -- stores/useReadMsg.js | 2 ++ 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pages/nearby/nearby.vue b/pages/nearby/nearby.vue index 61aa17b..c82d124 100644 --- a/pages/nearby/nearby.vue +++ b/pages/nearby/nearby.vue @@ -60,7 +60,6 @@ onMounted(() => { const handelComponentsRef = (el, index) => { if (el) { - console.log(el); swiperRefs[index].value = el; } }; diff --git a/pages/search/search.vue b/pages/search/search.vue index 207ced5..d6e680c 100644 --- a/pages/search/search.vue +++ b/pages/search/search.vue @@ -17,6 +17,7 @@ v-model="searchValue" placeholder="搜索职位名称" placeholder-class="placeholder" + @confirm="searchBtn" /> 搜索 @@ -112,7 +113,6 @@ function remove() { } function getJobList(type = 'add') { - console.log(type); if (type === 'add' && pageState.page < pageState.maxPage) { pageState.page += 1; } diff --git a/stores/useLocationStore.js b/stores/useLocationStore.js index 09aaae0..ed58bcb 100644 --- a/stores/useLocationStore.js +++ b/stores/useLocationStore.js @@ -61,8 +61,6 @@ const useLocationStore = defineStore("location", () => { // 导入 return { getLocation, - longitude, - latitude, longitudeVal, latitudeVal diff --git a/stores/useReadMsg.js b/stores/useReadMsg.js index aa90aa2..9a70efc 100644 --- a/stores/useReadMsg.js +++ b/stores/useReadMsg.js @@ -11,6 +11,8 @@ import { msg, $api, } from '../common/globalFunction'; + +// 控制消息 export const useReadMsg = defineStore('readMsg', () => { const msgList = ref([])