提交 7386b7e2 authored 作者: 王鹏飞's avatar 王鹏飞

优化登录页面

上级 28047776
<template> <template>
<div class="login"> <div class="login" v-show="showPage">
<h1 class="title"> <h1 class="title">
全国道路运输企业主要负责人和 全国道路运输企业主要负责人和
<br />安全生产管理人员安全考核管理 <br />安全生产管理人员安全考核管理
...@@ -60,6 +60,9 @@ export default { ...@@ -60,6 +60,9 @@ export default {
redirectURI() { redirectURI() {
const { query } = this.$route const { query } = this.$route
return query.redirect_uri ? decodeURIComponent(query.redirect_uri) : '' return query.redirect_uri ? decodeURIComponent(query.redirect_uri) : ''
},
showPage() {
return this.isWechat ? this.checkWechatLogin() : true
} }
}, },
methods: { methods: {
...@@ -137,7 +140,7 @@ export default { ...@@ -137,7 +140,7 @@ export default {
) )
} }
}, },
beforeMount() { created() {
this.$store.dispatch('checkLogin').then(isLogin => { this.$store.dispatch('checkLogin').then(isLogin => {
if (isLogin) { if (isLogin) {
this.loginSuccess({ code: 0, data: { TGC: Cookies.get('TGC') } }, 1) this.loginSuccess({ code: 0, data: { TGC: Cookies.get('TGC') } }, 1)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论