瀏覽代碼

修复 话费查询在非微信浏览器环境跳转问题

test
chenJinxu 5 月之前
父節點
當前提交
c247dc5925
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/views/card-info/index.vue

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

@@ -155,7 +155,7 @@ export default {
if (params) {
this.params = { ...params };
let url = window.location.href.split("?code=")[1];
if (isNotNull(url) || window.location.href.indexOf("code") > -1) {
if (isNotNull(url) && window.location.href.indexOf("code") > -1 && this.isWeChat) {
let timeStamp = new Date().getTime();
let code = url.split("&")[0];
this.code = code;


Loading…
取消
儲存