xbx #179

Merged
theluyuan merged 2 commits from xbx into master 2020-11-30 06:22:39 +00:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 4091d215b4 - Show all commits

View File

@ -913,7 +913,8 @@ export async function register(data: any){
mtongue: data.muyu,
tlanguage: data.jiaoshou,
language: getValue("Lanvuage") || 'zh',
zoneid: days.tz.guess()
zoneid: days.tz.guess(),
memberid: sessionStorage.getItem('mid')
})
if(res.code == 0){

View File

@ -271,7 +271,12 @@ export default defineComponent({
window.FB.login(function(response: any){
console.log(response, 121212)
// handle the response
authLogin(response.authResponse.userID, index)
authLogin(response.authResponse.userID, index).then((res: any)=>{
if(res.redirect == 1){
sessionStorage.setItem('mid',res.memberid);
router.push("/sign")
}
})
});
}