diff --git a/src/views/card-info/index.vue b/src/views/card-info/index.vue index 1011211..f9ee98c 100644 --- a/src/views/card-info/index.vue +++ b/src/views/card-info/index.vue @@ -1,7 +1,7 @@ @@ -109,6 +109,7 @@ export default { }, created() { this.getAuth(); + this.getToken(); this.getParams(); this.getCardInfo(); @@ -120,6 +121,18 @@ export default { APICore.getAuth({ manufactorId: manufactorId }).then(res => { this.$store.commit("gatewayToken", res.data.data); }); + }, + // 获取token + getToken() { + let manufacturerNo = '9f166b07-ff83-4991-84dc-ca6ad4a6b95b'; + APIPay.getToken(manufacturerNo).then(res => { + console.log("token的数据", res.data) + let data = res.data; + if(data.code === 20000) { + this.$store.commit("token", data.token); + console.log("token的数据", localStorage.getItem('token')) + } + }) }, // 获取url传过来的参数 getParams() { @@ -157,6 +170,10 @@ export default { let data= res.data; if(data.code === 20000) { this.$store.commit("openId", data.data.openId); + }else if (data.state === false) { + console.log("token过期"); + this.getToken(); + this.getOpenId(this.code); } }) }, diff --git a/src/views/package-buy/index.vue b/src/views/package-buy/index.vue index 3feba7e..dcce03a 100644 --- a/src/views/package-buy/index.vue +++ b/src/views/package-buy/index.vue @@ -460,8 +460,6 @@ export default { }, }, created() { - /* this.getAuth(); */ - this.getWxAutograph(); // 套餐列表 this.getDevicePayPackage(); },