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