24 lines
454 B
Vue
24 lines
454 B
Vue
<template>
|
|
<div>
|
|
登录中...
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { login} from '@/api/zhiyun'
|
|
export default {
|
|
created(){
|
|
var tk = this.$route.query['token']
|
|
if(tk){
|
|
login(tk).then(res=>{
|
|
console.log(res)
|
|
if(res.code==200){
|
|
location.href = res.data['url']
|
|
}else{
|
|
alert(res.msg)
|
|
}
|
|
})
|
|
}
|
|
|
|
}
|
|
}
|
|
</script> |