(function(){ Vue.component('doctor-top', { template: `
登录 下载APP
个人中心 下载APP 安全退出
`, props: [], data: function(){ return { islogin: true, selectedNav: null } }, mounted: function() { var selectedNav = window.sessionStorage.getItem("selectedDocNav") if(selectedNav) { this.selectedNav = selectedNav } }, methods: { login: function(){ //跳转到登录页面 window.location.href = '../../login/html/login.html' }, mine: function() { window.sessionStorage.setItem("selectedDocNav", -1); window.location.href = 'mine.html' }, logout: function(){ window.sessionStorage.removeItem("selectedDocNav") this.login() }, download: function(){ //下载APP } } }) })()