1
2
<template>
<div :class="prefixCls">
vben
authored
5 years ago
3
4
5
6
<a-row :class="`${prefixCls}-top`">
<a-col :span="9" :class="`${prefixCls}-col`">
<a-row>
<a-col :span="8">
7
<div :class="`${prefixCls}-top__avatar`">
8
<img width="70" :src="avatar" />
Vben
authored
4 years ago
9
<span>Vben</span>
10
11
<div>海纳百川,有容乃大</div>
</div>
vben
authored
5 years ago
12
13
</a-col>
<a-col :span="16">
14
<div :class="`${prefixCls}-top__detail`">
Vben
authored
4 years ago
15
<template v-for="detail in details" :key="detail.title">
16
17
18
19
20
21
<p>
<Icon :icon="detail.icon" />
{{ detail.title }}
</p>
</template>
</div>
vben
authored
5 years ago
22
23
24
25
</a-col>
</a-row>
</a-col>
<a-col :span="7" :class="`${prefixCls}-col`">
26
<CollapseContainer title="标签" :canExpan="false">
Vben
authored
4 years ago
27
<template v-for="tag in tags" :key="tag">
vben
authored
5 years ago
28
29
30
<Tag class="mb-2">
{{ tag }}
</Tag>
31
32
</template>
</CollapseContainer>
vben
authored
5 years ago
33
34
</a-col>
<a-col :span="8" :class="`${prefixCls}-col`">
35
36
37
38
39
40
<CollapseContainer :class="`${prefixCls}-top__team`" title="团队" :canExpan="false">
<div v-for="(team, index) in teams" :key="index" :class="`${prefixCls}-top__team-item`">
<Icon :icon="team.icon" :color="team.color" />
<span>{{ team.title }}</span>
</div>
</CollapseContainer>
vben
authored
5 years ago
41
42
</a-col>
</a-row>
43
44
45
46
47
48
49
50
51
52
53
54
55
<div :class="`${prefixCls}-bottom`">
<Tabs>
<template v-for="item in achieveList" :key="item.key">
<TabPane :tab="item.name">
<component :is="item.component" />
</TabPane>
</template>
</Tabs>
</div>
</div>
</template>
<script lang="ts">
vben
authored
5 years ago
56
import { Tag, Tabs, Row, Col } from 'ant-design-vue';
57
import { defineComponent, computed } from 'vue';
58
59
60
61
62
63
64
65
import { CollapseContainer } from '/@/components/Container/index';
import Icon from '/@/components/Icon/index';
import Article from './Article.vue';
import Application from './Application.vue';
import Project from './Project.vue';
import headerImg from '/@/assets/images/header.jpg';
import { tags, teams, details, achieveList } from './data';
66
import { useUserStore } from '/@/store/modules/user';
67
68
69
70
71
72
73
74
75
76
77
export default defineComponent({
components: {
CollapseContainer,
Icon,
Tag,
Tabs,
TabPane: Tabs.TabPane,
Article,
Application,
Project,
vben
authored
5 years ago
78
79
[Row.name]: Row,
[Col.name]: Col,
80
81
},
setup() {
82
83
const userStore = useUserStore();
const avatar = computed(() => userStore.getUserInfo.avatar || headerImg);
84
85
return {
prefixCls: 'account-center',
86
avatar,
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
tags,
teams,
details,
achieveList,
};
},
});
</script>
<style lang="less" scoped>
.account-center {
&-col:not(:last-child) {
padding: 0 10px;
&:not(:last-child) {
border-right: 1px dashed rgb(206, 206, 206, 0.5);
}
}
&-top {
padding: 10px;
margin: 16px 16px 12px 16px;
Vben
authored
4 years ago
108
background-color: @component-background;
109
110
111
112
113
114
border-radius: 3px;
&__avatar {
text-align: center;
img {
115
margin: auto;
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
border-radius: 50%;
}
span {
display: block;
font-size: 20px;
font-weight: 500;
}
div {
margin-top: 3px;
font-size: 12px;
}
}
&__detail {
padding-left: 20px;
margin-top: 15px;
}
&__team {
&-item {
display: inline-block;
139
padding: 4px 24px;
140
141
142
143
144
145
146
147
148
149
150
}
span {
margin-left: 3px;
}
}
}
&-bottom {
padding: 10px;
margin: 0 16px 16px 16px;
Vben
authored
4 years ago
151
background-color: @component-background;
152
153
154
155
border-radius: 3px;
}
}
</style>