diff --git a/README.md b/README.md index 91e8d26..316cfa1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -336,4 +336,7 @@ update - appId - 修改 正式环境的appid - packageList - - 修改正式环境 代理商用户的userId \ No newline at end of file + - 修改 正式环境 代理商用户的userId + +- packageHome + - 修改 appId获取的方式,本地配置文件固定配置,不再从url路由获取 \ No newline at end of file diff --git a/src/views/package-home/index.vue b/src/views/package-home/index.vue index be85c8a..88468f5 100644 --- a/src/views/package-home/index.vue +++ b/src/views/package-home/index.vue @@ -1,7 +1,7 @@ @@ -16,6 +16,7 @@ import { APIPay } from "@/api/pay"; import APICore from "@/api/core"; import APIWx from "@/api/wx"; import { isNotNull } from "@/utils/index"; +import AppId from "@/config/appId"; export default { name: "", data() { @@ -108,9 +109,6 @@ export default { getWxCode() { let params = this.params; let commonUrl = process.env.VUE_APP_BASE_API; - /* let redUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/${params.routerName}?imei=${params.imei}&appId=${params.appId}&iccid=${params.iccid}`); - let url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${params.appId}&redirect_uri=${redUrl}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`; - window.location.href = url; */ // todo 暂时去掉 if(this.isRecharge) { // 如果是已经支付,但未激活,跳转激活界面 @@ -122,8 +120,8 @@ export default { } }) } else { - let redUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/${params.routerName}?imei=${params.imei}&appId=${params.appId}&iccid=${params.iccid}`); - let url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${params.appId}&redirect_uri=${redUrl}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`; + let redUrl = encodeURIComponent(`${commonUrl}/h5-frontendweb/#/${params.routerName}?imei=${params.imei}&appId=${AppId}&iccid=${params.iccid}`); + let url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${AppId}&redirect_uri=${redUrl}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`; window.location.href = url; } @@ -134,7 +132,7 @@ export default { if (params) { console.log("params", params); this.params = {...params}; - this.$store.commit("appId", params.appId); + this.$store.commit("appId", AppId); if(params.reqUrl) { const reqUrl = encodeURI(params.reqUrl); console.log("reqUrl", params.reqUrl, reqUrl);