| | |
| | | refreshToken?: Nullable<string>; |
| | | userDetail?: Nullable<API.GetPersonalLoginInfoQueryResult>; |
| | | firstGetUserDetail?: boolean; |
| | | firstLaunch?: boolean; |
| | | |
| | | locationCity?: string; |
| | | locationProvince?: string; |
| | |
| | | refreshToken: userInfo?.refreshToken ?? '', |
| | | userDetail: userDetail, |
| | | firstGetUserDetail: true, |
| | | firstLaunch: true, |
| | | locationCity: storageLocation?.city ?? '北京市', |
| | | locationProvince: storageLocation?.province ?? '北京', |
| | | firstSetLocation: true, |
| | |
| | | // } |
| | | LocationUtils.currentProvinceName = provinceName; |
| | | }, |
| | | |
| | | setFirstLaunch(firstLaunch: boolean) { |
| | | this.firstLaunch = firstLaunch; |
| | | }, |
| | | }, |
| | | }); |
| | | |