|
@@ -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',
|