Преглед изворни кода

Merge branch 'develop' into test

test
JinxChen пре 1 година
родитељ
комит
9ee27a838f
1 измењених фајлова са 5 додато и 9 уклоњено
  1. +5
    -9
      src/views/package-home/index.vue

+ 5
- 9
src/views/package-home/index.vue Прегледај датотеку

@@ -1,7 +1,7 @@
<!--
* @Date: 2023-02-24 14:18:25
* @LastEditors: JinxChen
* @LastEditTime: 2023-04-15 12:57:35
* @LastEditTime: 2023-04-15 13:53:30
* @FilePath: \TelpoH5FrontendWeb\src\views\package-home\index.vue
* @description:
-->
@@ -29,7 +29,6 @@ export default {
/* this.getToken(); */
this.getAuth();
this.getParams();
this.checkImei();
},
methods: {
checkImei() {
@@ -38,10 +37,9 @@ export default {
iccid: this.params.iccid || ''
};
APIWx.CheckImei(reqBody).then(res =>{
let data = res.data;
if(data) {
this.isRecharge = data.isRecharge;
};
console.log("res", res.data.isRecharge);
this.isRecharge = res.data.isRecharge;
this.getWxCode();
}).catch(e => {
console.log("e", e.message);
})
@@ -135,11 +133,9 @@ export default {
this.$store.commit("appId", AppId);
if(params.reqUrl) {
const reqUrl = encodeURI(params.reqUrl);
console.log("reqUrl", params.reqUrl, reqUrl);
window.location.href = reqUrl;
} else {
console.log("不存在redUrl");
this.checkBrowser();
this.checkImei();
}
console.log("this.params", this.params);
}


Loading…
Откажи
Сачувај