From 7d80d093585939e22af224a03dd432dac80b821d Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期三, 31 十二月 2025 13:04:03 +0800
Subject: [PATCH] fix: bug
---
apps/housekeepingMiniApp/src/pages/home/index.vue | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/apps/housekeepingMiniApp/src/pages/home/index.vue b/apps/housekeepingMiniApp/src/pages/home/index.vue
index ccb9787..049abfa 100644
--- a/apps/housekeepingMiniApp/src/pages/home/index.vue
+++ b/apps/housekeepingMiniApp/src/pages/home/index.vue
@@ -1,5 +1,5 @@
<template>
- <PageLayoutWithBg class="index-page-wrapper" :title="'棣栭〉'" :need-auth="false">
+ <PageLayoutWithBg class="index-page-wrapper" :title="'娣橀棯宸�'" :need-auth="false">
<!-- <template #left>
<div class="menu-btn-wrapper menu-logo">
<img :src="IconLogo" class="logo" />
@@ -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