![](https://images2018.cnblogs.com/blog/1202438/201802/1202438-20180228153818822-2108054511.png)
watch: {
orgTreeShow(val){
if(val){
this.employeesShow = false;
}else{
this.loadEmployees()
}
}
},
beforeUpdate: function(){
console.log('beforethis.$route',this.$route);
if(this.$route.fullPath === '/company-manage/dept-frame' || this.$route.fullPath === '/theatre-manage/dept-frame'){
this.orgTreeShow = true
}else{
this.orgTreeShow = false;
}
},
created () {
console.log('this.$route',this.$route);
this.orgTreeShow = false;
if(this.$route.fullPath === '/company-manage/dept-frame' || this.$route.fullPath === '/theatre-manage/dept-frame'){
this.orgTreeShow = true
}
if(this.orgTreeShow){
this.loadDeptsTree()
}else{
this.loadEmployees()
}
},