|
|
@ -36,22 +36,15 @@ export default { |
|
|
|
userName: "", |
|
|
|
}; |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
"$router": { |
|
|
|
handler(nev, olv) { |
|
|
|
console.log(895, nev, olv) |
|
|
|
}, |
|
|
|
deep: true |
|
|
|
} |
|
|
|
}, |
|
|
|
watch: {}, |
|
|
|
async mounted() { |
|
|
|
await this.init(); |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
async init() { |
|
|
|
console.log(895, this.$route) |
|
|
|
if (!localStorage.getItem("userId")) { |
|
|
|
this.$router.push("/login"); |
|
|
|
localStorage.setItem("routerFullPath", this.$route.fullPath) |
|
|
|
} |
|
|
|
this.userName = localStorage.getItem("userName") |
|
|
|
let isAdmin = localStorage.getItem("isAdmin") |
|
|
|