From 92264a516c8c695c38d4cc9358c50bcfbed36f06 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 03 九月 2025 14:00:15 +0800
Subject: [PATCH] fix: bug

---
 apps/cMiniApp/src/stores/modules/user.ts |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/apps/cMiniApp/src/stores/modules/user.ts b/apps/cMiniApp/src/stores/modules/user.ts
index f2c2654..cf8e0bf 100644
--- a/apps/cMiniApp/src/stores/modules/user.ts
+++ b/apps/cMiniApp/src/stores/modules/user.ts
@@ -33,6 +33,7 @@
   refreshToken?: Nullable<string>;
   userDetail?: Nullable<API.GetPersonalLoginInfoQueryResult>;
   firstGetUserDetail?: boolean;
+  firstLaunch?: boolean;
 
   locationCity?: string;
   locationProvince?: string;
@@ -71,6 +72,7 @@
       refreshToken: userInfo?.refreshToken ?? '',
       userDetail: userDetail,
       firstGetUserDetail: true,
+      firstLaunch: true,
       locationCity: storageLocation?.city ?? '鍖椾含甯�',
       locationProvince: storageLocation?.province ?? '鍖椾含',
       firstSetLocation: true,
@@ -277,6 +279,10 @@
       // }
       LocationUtils.currentProvinceName = provinceName;
     },
+
+    setFirstLaunch(firstLaunch: boolean) {
+      this.firstLaunch = firstLaunch;
+    },
   },
 });
 

--
Gitblit v1.9.1