You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.6 KiB
79 lines
1.6 KiB
<template>
|
|
<div class="" style="margin-top: 20px;">
|
|
<div v-if="user">
|
|
<el-row :gutter="20">
|
|
|
|
<el-col :span="6" :xs="24">
|
|
<user-card :user="user" />
|
|
</el-col>
|
|
|
|
<el-col :span="18" :xs="24">
|
|
<el-card>
|
|
<el-tabs v-model="activeTab">
|
|
<el-tab-pane label="操作日志" name="timeline">
|
|
<timeline />
|
|
</el-tab-pane>
|
|
<el-tab-pane label="信息修改" name="account">
|
|
<account />
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</el-card>
|
|
</el-col>
|
|
|
|
</el-row>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
mapGetters
|
|
} from 'vuex'
|
|
import UserCard from './components/UserCard'
|
|
import Timeline from './components/Timeline'
|
|
import Account from './components/Account'
|
|
|
|
import {
|
|
getInfo
|
|
} from '../../api/user.js'
|
|
|
|
export default {
|
|
name: 'Profile',
|
|
components: {
|
|
UserCard,
|
|
Timeline,
|
|
Account
|
|
},
|
|
data() {
|
|
return {
|
|
user: {},
|
|
activeTab: 'timeline'
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'name',
|
|
'avatar',
|
|
'roles'
|
|
])
|
|
},
|
|
created() {
|
|
this.getUser()
|
|
},
|
|
methods: {
|
|
getUser() {
|
|
|
|
getInfo().then(res => {
|
|
this.user = {
|
|
name:res.name,
|
|
username:res.username,
|
|
role: this.roles.join(' | '),
|
|
avatar: this.avatar
|
|
}
|
|
})
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|