소스 검색

产品交易退出跳转、流程查询

rongxin_prod
Xyq123* 1 년 전
부모
커밋
c55ab210d9
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. +5
    -2
      src/views/user/index.vue

+ 5
- 2
src/views/user/index.vue 파일 보기

@@ -106,7 +106,7 @@ export default {
for(var i = keys.length; i--;)
document.cookie = keys[i] + '=0;expires=' + new Date(0).toUTCString()
}
this.$router.push({name:'index'})
this.$router.push({ path: "/index" });
});
},
getInfo(){
@@ -120,7 +120,10 @@ export default {
this.activitiStatus = response.data.activitiStatus;
this.instanceId = response.data.instanceId;
this.memberType = response.data.memberType;
this.getHistoryList()
if(this.instanceId !== "" && this.instanceId != null){
this.getHistoryList()
}

});
});
},


불러오는 중...
취소
저장