|
@@ -5,6 +5,7 @@ import useRequest from '@ahooksjs/use-request/es'
|
|
import { message } from 'antd'
|
|
import { message } from 'antd'
|
|
|
|
|
|
import { Login2pService, IPrivateEquityUser } from './Login2p.service'
|
|
import { Login2pService, IPrivateEquityUser } from './Login2p.service'
|
|
|
|
+import { getQueryString } from 'utils/getQueryString'
|
|
import { checkWechat } from 'utils/wxConfig'
|
|
import { checkWechat } from 'utils/wxConfig'
|
|
import NewAxiosInstanceFunc from 'Service/NewAxiosInstance'
|
|
import NewAxiosInstanceFunc from 'Service/NewAxiosInstance'
|
|
|
|
|
|
@@ -13,6 +14,7 @@ const Login2pContexts = React.createContext<
|
|
jwt: string | undefined
|
|
jwt: string | undefined
|
|
userInfo: IPrivateEquityUser | undefined
|
|
userInfo: IPrivateEquityUser | undefined
|
|
isWechat: boolean
|
|
isWechat: boolean
|
|
|
|
+ inviteCode: string | undefined
|
|
// login: (phone_number: number, password: string, next: string, unionID?: string) => Promise<void>
|
|
// login: (phone_number: number, password: string, next: string, unionID?: string) => Promise<void>
|
|
logout: () => void
|
|
logout: () => void
|
|
loginWechatLaunch: (redirectURI: string) => void
|
|
loginWechatLaunch: (redirectURI: string) => void
|
|
@@ -32,18 +34,22 @@ const Login2pProvider: React.FC<ContextProviderProps> = ({ children }: ContextPr
|
|
const sm_token = localStorage.getItem('smtoken')
|
|
const sm_token = localStorage.getItem('smtoken')
|
|
// token初始值
|
|
// token初始值
|
|
const [jwt, setJwt] = useState<string | undefined>(sm_token !== null ? sm_token : undefined)
|
|
const [jwt, setJwt] = useState<string | undefined>(sm_token !== null ? sm_token : undefined)
|
|
|
|
+ const inviteCode = getQueryString('invite_code') || sessionStorage.getItem('invite_code') || undefined
|
|
const [userInfo, setUserInfo] = useState<IPrivateEquityUser>()
|
|
const [userInfo, setUserInfo] = useState<IPrivateEquityUser>()
|
|
const isWechat = checkWechat()
|
|
const isWechat = checkWechat()
|
|
const loginEnd = (access_token: string, next: string) => {
|
|
const loginEnd = (access_token: string, next: string) => {
|
|
localStorage.setItem('smtoken', access_token)
|
|
localStorage.setItem('smtoken', access_token)
|
|
setJwt(access_token)
|
|
setJwt(access_token)
|
|
|
|
+ if (inviteCode) {
|
|
|
|
+ sessionStorage.setItem('invite_code', inviteCode)
|
|
|
|
+ }
|
|
history.push(next)
|
|
history.push(next)
|
|
}
|
|
}
|
|
|
|
|
|
const logout = (): void => {
|
|
const logout = (): void => {
|
|
localStorage.removeItem('smtoken')
|
|
localStorage.removeItem('smtoken')
|
|
setJwt(undefined)
|
|
setJwt(undefined)
|
|
- history.push('/')
|
|
|
|
|
|
+ history.push(`/${inviteCode ? '?invite_code=' + inviteCode : ''}`)
|
|
// 解决localstorage读取不到的过度方案
|
|
// 解决localstorage读取不到的过度方案
|
|
history.go(0)
|
|
history.go(0)
|
|
}
|
|
}
|
|
@@ -75,7 +81,7 @@ const Login2pProvider: React.FC<ContextProviderProps> = ({ children }: ContextPr
|
|
.catch(error => message.error('微信登录错误'))
|
|
.catch(error => message.error('微信登录错误'))
|
|
|
|
|
|
const login2pByCode = async (phone_number: string, code: string, next: string, token?: string) =>
|
|
const login2pByCode = async (phone_number: string, code: string, next: string, token?: string) =>
|
|
- await Login2pService.postLogin2p(phone_number, code, token)
|
|
|
|
|
|
+ await Login2pService.postLogin2p(phone_number, code, token, sessionStorage.getItem('invite_code') || inviteCode)
|
|
.then(data => {
|
|
.then(data => {
|
|
if (data.data.Data?.Authorization) {
|
|
if (data.data.Data?.Authorization) {
|
|
setUserInfo(data.data.Data)
|
|
setUserInfo(data.data.Data)
|
|
@@ -101,6 +107,11 @@ const Login2pProvider: React.FC<ContextProviderProps> = ({ children }: ContextPr
|
|
}, 2000)
|
|
}, 2000)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ // 如果有邀请码
|
|
|
|
+ if (!!data.InviteShareCode) {
|
|
|
|
+ sessionStorage.setItem('invite_code', data.InviteShareCode)
|
|
|
|
+ history.replace(`${window.location.pathname}?invite_code=${data.InviteShareCode}`)
|
|
|
|
+ }
|
|
|
|
|
|
setUserInfo(data)
|
|
setUserInfo(data)
|
|
},
|
|
},
|
|
@@ -113,6 +124,7 @@ const Login2pProvider: React.FC<ContextProviderProps> = ({ children }: ContextPr
|
|
jwt: jwt,
|
|
jwt: jwt,
|
|
userInfo: userInfo,
|
|
userInfo: userInfo,
|
|
isWechat: isWechat,
|
|
isWechat: isWechat,
|
|
|
|
+ inviteCode,
|
|
// login,
|
|
// login,
|
|
logout,
|
|
logout,
|
|
loginWechatLaunch: loginWechatLaunch,
|
|
loginWechatLaunch: loginWechatLaunch,
|