Browse Source

H5-商品

panyong 3 years ago
parent
commit
f7c3ccc4d2
2 changed files with 8 additions and 7 deletions
  1. 1 1
      htmldev/dashboard/src/App.vue
  2. 7 6
      htmldev/dashboard/src/utils/wxConfig.js

+ 1 - 1
htmldev/dashboard/src/App.vue

@@ -46,7 +46,7 @@ export default {
     }
   },
   async created () {
-    console.log(WxConfig())
+    WxConfig()
     await this.$store.dispatch('common/fetchBarList')
   },
   mounted () {

+ 7 - 6
htmldev/dashboard/src/utils/wxConfig.js

@@ -6,18 +6,19 @@ const wxJs = () => request({
   url: '/api/wechat/account/config',
   params: {
     url: location.href,
-    officialAccountCode: 'tingbang' //  写死
+    official_account_code: 'tingbang' //  写死
   }
 })
 
 export const WxConfig = async () => {
-  const { appId, timestamp, nonceStr, signature } = await wxJs()
+  const { data } = await wxJs()
+  console.log(data)
   let wxParam = {
     debug: false,
-    appId: appId,
-    timestamp: timestamp,
-    nonceStr: nonceStr,
-    signature: signature,
+    appId: data.app_id,
+    timestamp: data.timestamp,
+    nonceStr: data.nonce_str,
+    signature: data.signature,
     jsApiList: [
       'checkJsApi',
       'openLocation',