|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="login-container">
|
|
|
+ <div class="login-container" v-if="!isWechatEnv">
|
|
|
<div class="login-form-main">
|
|
|
<el-form
|
|
|
ref="loginForm"
|
|
@@ -125,6 +125,7 @@ import asyncRequest from '@/apis/service/user'
|
|
|
import Identify from '@/components/identify'
|
|
|
import urlConfig from '@/apis/url-config'
|
|
|
import resToken from '@/mixins/resToken'
|
|
|
+import config from '@/config'
|
|
|
|
|
|
export default {
|
|
|
name: 'Login',
|
|
@@ -175,6 +176,7 @@ export default {
|
|
|
return {
|
|
|
ver: '',
|
|
|
show: false,
|
|
|
+ isWechatEnv:false,
|
|
|
loginTitle: urlConfig.loginTitle,
|
|
|
loginBeian: urlConfig.loginBeian,
|
|
|
loginBeianUrl: urlConfig.loginBeianUrl,
|
|
@@ -221,6 +223,16 @@ export default {
|
|
|
immediate: true
|
|
|
}
|
|
|
},
|
|
|
+ created(){
|
|
|
+ const ua = window.navigator.userAgent.toLowerCase();
|
|
|
+ this.isWechatEnv = ua.match(/micromessenger/i) == 'micromessenger' && window.location.search !== "?from=authorization";
|
|
|
+
|
|
|
+ //
|
|
|
+ if (this.isWechatEnv) {
|
|
|
+ this.wechatLogin();
|
|
|
+ return
|
|
|
+ }
|
|
|
+ },
|
|
|
mounted() {
|
|
|
this.refreshCode()
|
|
|
this.bindEnterEvent()
|
|
@@ -235,6 +247,9 @@ export default {
|
|
|
this.removeEnterEvent()
|
|
|
},
|
|
|
methods: {
|
|
|
+ wechatLogin(){
|
|
|
+ window.location.href = `${config.wechatUrl}?back=${config.backUrl}&name=${config.title}`
|
|
|
+ },
|
|
|
bindEnterEvent() {
|
|
|
window.addEventListener('keydown', this.listener)
|
|
|
},
|