浏览代码

修复 跳转携带参数为空的问题

feat
JinxChen 1年前
父节点
当前提交
7319775001
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/views/card-info/index.vue

+ 2
- 2
src/views/card-info/index.vue 查看文件

@@ -1,7 +1,7 @@
<!--
* @Date: 2022-04-15 10:22:36
* @LastEditors: JinxChen
* @LastEditTime: 2023-04-17 11:36:29
* @LastEditTime: 2023-04-17 14:18:15
* @FilePath: \TelpoH5FrontendWeb\src\views\card-info\index.vue
* @description:
-->
@@ -125,6 +125,7 @@ export default {
getParams() {
let params = this.$route.query;
if (params) {
this.params = {...params};
let url = window.location.href.split("?code=")[1];
if ( isNotNull(url) || window.location.href.indexOf("code") > -1) {
let timeStamp = new Date().getTime();
@@ -140,7 +141,6 @@ export default {
} else {
this.getWxCode();
}
this.params = {...params};
}
},
getWxCode() {


正在加载...
取消
保存