소스 검색

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

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…
취소
저장