|
|
|
@ -69,6 +69,12 @@
|
|
|
|
|
threePermissionList: [],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted(){
|
|
|
|
|
let that = this;
|
|
|
|
|
this.bus.$on('callBack', function () {
|
|
|
|
|
that.callBack();
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.mHeight = window.screen.availHeight - 22;
|
|
|
|
|
|
|
|
|
@ -223,7 +229,19 @@
|
|
|
|
|
this.selectedSubMenu = this.onePermissionList[0].subMenuList[0].name;
|
|
|
|
|
this.$router.push({path:that.onePermissionList[0].subMenuList[0].resource});
|
|
|
|
|
},
|
|
|
|
|
//账户管理页面回调方法
|
|
|
|
|
callBack(){
|
|
|
|
|
debugger
|
|
|
|
|
let that = this;
|
|
|
|
|
this.selectedMenu = "设置管理";
|
|
|
|
|
this.selectedSubMenu = "账户管理";
|
|
|
|
|
this.selectedItemName = this.onePermissionList[0].subMenuList[0].id;
|
|
|
|
|
this.$nextTick(()=>{
|
|
|
|
|
that.$refs.menu.updateActiveName();
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped>
|
|
|
|
|