dist #271

Merged
theluyuan merged 2 commits from xbx into master 2020-12-15 06:25:10 +00:00
Showing only changes of commit 23020a0512 - Show all commits

View File

@ -20,12 +20,14 @@ export default defineComponent(({
setup(){
const code: any = useRoute().query.code;
console.log(code)
alert(code)
if(!code){
router.push("/")
return ;
}
accessToken(code, 1).then((res: any)=>{
console.log(res)
authLogin(res.uid, 2).then((res: any)=>{
authLogin(res.uid, 1).then((res: any)=>{
if(res.redirect == 1){
sessionStorage.setItem('mid',res.memberid);
router.push("/sign")