1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-06 15:31:23 +08:00

Add employee personal information

This commit is contained in:
GGB
2023-05-28 22:11:30 +08:00
parent f772b39964
commit 11e122df0b
9 changed files with 129 additions and 80 deletions

View File

@@ -138,7 +138,9 @@
<template #default>
<div style="display: flex; gap: 10px; flex-direction: column">
<div>
<el-button style="width: 100%">个人档案</el-button>
<el-button @click="profile" style="width: 100%"
>个人档案</el-button
>
</div>
<div>
<el-button @click="logout" style="width: 100%">退出</el-button>
@@ -221,6 +223,9 @@ export default {
changeCollapsed() {
this.isCollapsed = !this.isCollapsed
setLocalStorage('menuCollapsed', this.isCollapsed.toString())
},
profile() {
this.$router.push('/profile')
}
},
async mounted() {