This commit is contained in:
2019-11-29 21:32:02 +08:00
parent 80ef5bbfcc
commit 71fb824b9c
4 changed files with 19 additions and 12 deletions

View File

@@ -37,13 +37,10 @@ export default {
methods:{
tab(){
window.console.log(this.types,"llk")
if(this.types=="1"){
this.$router.push({
path: '/sign'
});
this.$emit("wz",this.types,this.id)
window.console.log( this.$router)
}
}
}
};
</script>

View File

@@ -124,17 +124,17 @@ export default {
switch (e) {
case 0:
this.$router.push({
path: `/index`
path: '/'
});
break;
case 1:
this.$router.push({
path: `/PersonalHomepage`
path: '/PersonalHomepage'
});
break;
case 2:
this.$router.push({
path: `/login`
path: '/login'
});
break;
}