snow 2 년 전
부모
커밋
8308d6a23f
8개의 변경된 파일50개의 추가작업 그리고 68개의 파일을 삭제
  1. 0 0
      dist/index.html
  2. 0 0
      dist/static/js/app.2aa2ed56.js
  3. BIN
      dist/static/js/app.2aa2ed56.js.gz
  4. BIN
      dist/static/js/app.66361b4e.js.gz
  5. 1 0
      public/index.html
  6. 37 15
      src/pages/login.vue
  7. 5 46
      src/pages/report.vue
  8. 7 7
      src/router/index.js

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.2aa2ed56.js


BIN
dist/static/js/app.2aa2ed56.js.gz


BIN
dist/static/js/app.66361b4e.js.gz


+ 1 - 0
public/index.html

@@ -8,6 +8,7 @@
     <script src="./static/vue.min.js" rel="preload" as="script"></script>
     <script src="./static/vue-router.min.js" rel="preload" as="script"></script>
     <script src="./static/axios@0.21.0.min.js" rel="preload" as="script"></script>
+    <!-- <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script> -->
     <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
     <title>报表</title>
     <style>

+ 37 - 15
src/pages/login.vue

@@ -5,6 +5,7 @@
 
 <script>
 import config from "@/config"
+import asyncRequest from "@/api/index"
 export default {
   name:'login',
   async mounted () {
@@ -13,29 +14,50 @@ export default {
       const scope = 'snsapi_userinfo'
       const url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${config.appId}&redirect_uri=${redirect}&response_type=code&scope=${scope}&state=${state}#wechat_redirect`
       window.location.href = url
+      // this.initWechatSdk()
   },
   methods:{
     async initWechatSdk(){
       try{
-        const result = await asyncRequest.signature({url:'/login'})
+        const result = await asyncRequest.signature({url: "http://depart.test241.wanyuhengtong.com/#/"})
         switch(Number(result.code)){
           case 0:
-            wx.config({
-               debug: true,
-               appId: result.data.appId,
-               timestamp: result.data.timestamp,
-               nonceStr: result.data.nonceStr,
-               signature: result.data.signature,
-               jsApiList: ['checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage']
-            })
+            const redirect = encodeURIComponent(config.redirect)
+            var state = 'wx_' + Math.random().toString(36).substr(2, 15);
+            const scope = 'snsapi_userinfo'
+            const url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${result.appId}&redirect_uri=${redirect}&response_type=code&scope=${scope}&state=${state}#wechat_redirect`
+            // window.location.href = url
+            // wx.config({
+            //    debug: false,
+            //    appId: result.data.appid,
+            //    timestamp: result.data.timestamp,
+            //    nonceStr: result.data.noncestr,
+            //    signature: result.data.signature,
+            //    jsApiList: ['login']
+            // })
 
-            wx.ready(function(){
-              alert('111')
-            })
+            // wx.ready(function(){
+            //    wx.checkJsApi({
+            //       jsApiList: ['login'],
+            //       success:function(res){
+            //         if(res.checkResult.login){
+            //           wx.login({
+            //             success:function(res){
+            //               console.log(res)
+            //             },
+            //             fail:function(res){}
+            //           })
+            //         }
+            //       },
+            //       fail:function(res){
+            //         alert('line-109')
+            //       }
+            //   })
+            // })
           
-            wx.error(function () {
-              alert('222')
-            })
+            // wx.error(function (res) {
+            //   alert(JSON.stringify(res) + '115')
+            // })
             break
           default:
             break

+ 5 - 46
src/pages/report.vue

@@ -55,6 +55,8 @@
 </template>
 <script>
 import asyncRequest from "@/api/index"
+// import config from "@/config"
+import { getParameterByName } from "../utils/auth"
 export default {
   name:'report',
   data() {
@@ -73,8 +75,9 @@ export default {
       })
     }
   },
-  mounted(){
-    this.initWechatSdk()
+  async mounted(){
+    const result = asyncRequest.userinfo({code:getParameterByName('code')})
+    console.log(result)
   },
   methods: {
     transformTime() {
@@ -84,50 +87,6 @@ export default {
       let d = time.getDate();
       return y + "-" + (M < 10 ? "0" + M : M) + "-" + (d < 10 ? "0" + d : d);
     },
-    async initWechatSdk(){
-      try{
-        const result = await asyncRequest.signature({url: "http://depart.test241.wanyuhengtong.com/#/"})
-        switch(Number(result.code)){
-          case 0:
-            wx.config({
-               debug: false,
-               appId: result.data.appid,
-               timestamp: result.data.timestamp,
-               nonceStr: result.data.noncestr,
-               signature: result.data.signature,
-               jsApiList: ['login']
-            })
-
-            wx.ready(function(){
-               wx.checkJsApi({
-                  jsApiList: ['login'],
-                  success:function(res){
-                    if(res.checkResult.login){
-                      wx.login({
-                        success:function(res){
-                          console.log(res)
-                        },
-                        fail:function(res){}
-                      })
-                    }
-                  },
-                  fail:function(res){
-                    alert('line-109')
-                  }
-              })
-            })
-          
-            wx.error(function (res) {
-              alert(JSON.stringify(res) + '115')
-            })
-            break
-          default:
-            break
-        }
-      }catch(error){
-        console.log(error)
-      }
-    },
   }
 };
 </script>

+ 7 - 7
src/router/index.js

@@ -9,12 +9,12 @@ const routes = [
 
 const router = new VueRouter({routes ,mode:'hash'})
 
-// router.beforeEach((to, _, next) => {
-//   if (to.path !== '/login' && !getParameterByName('code')) {
-//     next('/login')
-//   } else {
-//     next()
-//   }
-// })
+router.beforeEach((to, _, next) => {
+  if (to.path !== '/login' && !getParameterByName('code')) {
+    next('/login')
+  } else {
+    next()
+  }
+})
 
 export default router

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.