This commit is contained in:
zhaofang
2022-10-19 17:23:25 +08:00
parent cbd6bde484
commit 4832d9288a
2 changed files with 9 additions and 2 deletions

View File

@@ -34,6 +34,10 @@
type:String,
default:''
},
noJump:{
type:Number,
default: true
}
},
data(){
return {
@@ -60,7 +64,10 @@
methods:{
toHome() {
// ,query:{id:item.objId || item.id}
this.$router.push({path:this.$xpage.getHomePath(this.aid)})
if(this.noJump) {
this.$router.push({path:this.$xpage.getHomePath(this.aid)})
}
}
},
watch:{