From ba3688118df8c86630d4fe7c9c0144562e71807c Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 30 十二月 2025 16:20:29 +0800
Subject: [PATCH] fix: bug

---
 apps/housekeepingMiniApp/src/pages/home/index.vue |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/apps/housekeepingMiniApp/src/pages/home/index.vue b/apps/housekeepingMiniApp/src/pages/home/index.vue
index ccb9787..d3b2bee 100644
--- a/apps/housekeepingMiniApp/src/pages/home/index.vue
+++ b/apps/housekeepingMiniApp/src/pages/home/index.vue
@@ -94,6 +94,7 @@
 import { setOSSLink, trim } from '@12333/utils';
 import * as standardServiceServices from '@12333/services/apiV2/standardService';
 import { EnumPagedListOrder, EnumStandardServiceReleaseStatus } from '@12333/constants';
+import { useSystemStore } from '@/stores/modules/system';
 
 const { locationCity } = useUser();
 
@@ -159,10 +160,12 @@
 }
 
 const switchTab = useSwitchTab();
+const systemStore = useSystemStore();
 
 function goService(item: API.SelectOptionStringGetDictionaryDataSelectQueryResultOption) {
+  systemStore.setServicePageJobCode(item.value);
   switchTab({
-    url: `${RouterPath.service}?id=${item.value}`,
+    url: `${RouterPath.service}`,
   });
 }
 </script>

--
Gitblit v1.10.0