123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div class="loginBox">
- <iframe src="//edu.cocorobo.cn/course/login?type=2" frameborder="0"></iframe>
- <!-- <button @click="handleLogin">登录</button> -->
- </div>
- </template>
- <script>
- import { mapActions } from 'vuex'
- export default {
- data() {
- return {
- redirect: undefined,
- timer: null
- }
- },
- watch: {
- $route: {
- handler: function(route) {
- this.redirect = route.query && route.query.redirect
- },
- immediate: true
- }
- },
- methods: {
- ...mapActions({
- login: 'user/login'
- }),
- handleLogin() {
- this.$router.push({ path: this.redirect || '/' })
- },
- async getLogin() {
- const userid = await this.login()
- console.log(userid)
- if (userid) {
- this.$router.push({ path: this.redirect || '/' })
- }
- // eduGet().then(res => {})
- }
- },
- beforeDestroy() {
- clearInterval(this.timer)
- this.timer = null
- },
- mounted() {
- this.timer = setInterval(() => {
- this.getLogin()
- }, 2000)
- }
- }
- </script>
- <style lang="scss" scoped>
- .loginBox {
- position: relative;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- > iframe {
- width: 100%;
- height: 100%;
- border: 0;
- }
- }
- </style>
|