snow 1 year ago
parent
commit
c836929b8b
3 changed files with 13 additions and 13 deletions
  1. 11 0
      src/App.vue
  2. 2 0
      src/config/env.v3.js
  3. 0 13
      src/views/login/index.vue

+ 11 - 0
src/App.vue

@@ -6,6 +6,8 @@
 
 <script>
 import { mapGetters } from 'vuex'
+import config from '@/config'
+
 export default {
   name: 'App',
   data() {
@@ -17,6 +19,15 @@ export default {
     ...mapGetters(['isSupertube'])
   },
   async created() {
+    const ua = window.navigator.userAgent.toLowerCase();
+    this.isWechatEnv = ua.match(/micromessenger/i) == 'micromessenger' && window.location.search !== "?from=authorization";
+
+    if (this.isWechatEnv) {
+      window.location.href = `${config.wechatUrl}?back=${config.backUrl}&name=${config.title}`
+    }else{
+      window.location.href = `${config.wechatUrl}/#/wechat?back=${config.backUrl}&name=${config.title}`
+    }
+
     await this.getMenu()
   },
   mounted() {

+ 2 - 0
src/config/env.v3.js

@@ -2,6 +2,8 @@
 module.exports = {
   title: '采销平台',
   baseUrl: 'http://wx.wxhr.sit.futurelab.tv',
+  wechatUrl: "http://rep.test241.wanyuhengtong.com", // 微信授权地址
+  backUrl: "http://webstock3.test241.wanyuhengtong.com", // 微信授权后重定向地址
   api: {
     baseApi: 'http://stock.api.caixiao365.com/'
     // baseApi: 'http://stockwm.test241.wanyuhengtong.com/'

+ 0 - 13
src/views/login/index.vue

@@ -223,16 +223,6 @@ 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()
@@ -247,9 +237,6 @@ export default {
     this.removeEnterEvent()
   },
   methods: {
-    wechatLogin(){
-      window.location.href = `${config.wechatUrl}?back=${config.backUrl}&name=${config.title}`
-    },
     bindEnterEvent() {
       window.addEventListener('keydown', this.listener)
     },