snow 2 年之前
父節點
當前提交
c48512196d

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.04170013.js


二進制
dist/static/js/app.04170013.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.428444e4.js


二進制
dist/static/js/app.428444e4.js.gz


+ 3 - 2
src/api/index.js

@@ -1,8 +1,9 @@
 // 物业管理员
 // 物业管理员
 import http from "@/api/axios";
 import http from "@/api/axios";
-import { baseApi, cxApi } from "@/config";
+import { baseApi, reportApi } from "@/config";
 const api = "admin/";
 const api = "admin/";
 export default {
 export default {
   // 获取微信授权信息...
   // 获取微信授权信息...
-  signature: (data, params) => http(baseApi + api + "wechat_getconfig", data, "post", params),
+  signature: (data, params) => http(reportApi + api + "wechat_getconfig", data, "post", params),
+  userinfo: (data, params) => http(reportApi + api + "wechat_getinfo", data, "post", params),
 };
 };

+ 1 - 1
src/components/reports/src/_utils.js

@@ -83,6 +83,6 @@ export function subtraction(arg1, arg2) {
 
 
 export function unit2TenThousand(value){
 export function unit2TenThousand(value){
   if(value === NaN || value === "NaN" || Number(value) === 0) return '0'
   if(value === NaN || value === "NaN" || Number(value) === 0) return '0'
-  // if(value < 10000) return value
+  if(value < 1000) return value
   return division(value,10000).toFixed(2) + 'W'
   return division(value,10000).toFixed(2) + 'W'
 }
 }

+ 32 - 1
src/pages/login.vue

@@ -1,5 +1,5 @@
 <template>
 <template>
-  <div />
+  <div class=""></div>
 </template>
 </template>
 
 
 
 
@@ -13,6 +13,37 @@ export default {
       const scope = 'snsapi_userinfo'
       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`
       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
       window.location.href = url
+  },
+  methods:{
+    async initWechatSdk(){
+      try{
+        const result = await asyncRequest.signature({url:'/login'})
+        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']
+            })
+
+            wx.ready(function(){
+              alert('111')
+            })
+          
+            wx.error(function () {
+              alert('222')
+            })
+            break
+          default:
+            break
+        }
+      }catch(error){
+        console.log(error)
+      }
+    },
   }
   }
 }
 }
 </script>
 </script>

+ 18 - 25
src/pages/report.vue

@@ -55,7 +55,6 @@
 </template>
 </template>
 <script>
 <script>
 import asyncRequest from "@/api/index"
 import asyncRequest from "@/api/index"
-import { getParameterByName } from "../utils/auth"
 export default {
 export default {
   name:'report',
   name:'report',
   data() {
   data() {
@@ -87,47 +86,41 @@ export default {
     },
     },
     async initWechatSdk(){
     async initWechatSdk(){
       try{
       try{
-        const code = getParameterByName('code')
-        const result = await asyncRequest({code})
+        const result = await asyncRequest.signature({url: "http://depart.test241.wanyuhengtong.com"})
 
 
         switch(Number(result.code)){
         switch(Number(result.code)){
           case 0:
           case 0:
-            // 配置微信JSSDK
             wx.config({
             wx.config({
-               debug: true,
-               appId: result.data.appId,
+               debug: false,
+               appId: result.data.appid,
                timestamp: result.data.timestamp,
                timestamp: result.data.timestamp,
-               nonceStr: result.data.nonceStr,
+               nonceStr: result.data.noncestr,
                signature: result.data.signature,
                signature: result.data.signature,
-               jsApiList: ['checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage']
+               jsApiList: ['login']
             })
             })
 
 
             wx.ready(function(){
             wx.ready(function(){
-              wx.webckJsApi({
-                jsApiList:['getUserInfo'],
-                success:function(res){
-                  console.log(res)
-                  //用户信息...
-                },
-                fail:function(){
-                  //..处理获取用户失败情况
-                  //this.$router.push('/lo')
-                  alert('get userinfo fail')
-                }
+               wx.checkJsApi({
+                  jsApiList: ['login'],
+                  success:function(res){
+                    const code = res.code
+                    alert(code)
+                  },
+                  fail:function(res){
+                    alert('line-109')
+                  }
               })
               })
             })
             })
-
-            wx.error(function () {
-              alert('wx error')
-              // this.$router.push('/login')
+          
+            wx.error(function (res) {
+              alert(JSON.stringify(res) + '115')
             })
             })
             break
             break
           default:
           default:
-            // this.$router.push('/login')
             break
             break
         }
         }
       }catch(error){
       }catch(error){
-        // this.$router.push('/login')
+        console.log(error)
       }
       }
     },
     },
   }
   }

Some files were not shown because too many files changed in this diff