xiangpei
2024-12-03 8c3eaeddeff2c9c5a92352e6bf830e5000ff5882
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<template>
  <el-card style="margin-bottom:20px;">
    <div slot="header" class="clearfix">
      <span>关于我</span>
    </div>
 
    <div class="user-profile">
      <div class="box-center">
        <img :src="userInfo.imagePath === null ? require('@/assets/avatar.gif') : userInfo.imagePath " height="100px" width="100px" style="border-radius: 50px">
      </div>
      <div class="box-center">
        <div class="user-name text-center">{{ userInfo.userName }}</div>
        <div class="user-role text-center text-muted">{{ enumFormat(roleEnum,userInfo.role) }}</div>
      </div>
    </div>
 
    <div class="user-bio">
      <div class="user-education user-bio-section">
        <div class="user-bio-section-header"><svg-icon icon-class="education" /><span>个人简介</span></div>
        <div class="user-bio-section-body">
          <div class="text-muted">
           无
          </div>
        </div>
      </div>
 
    </div>
  </el-card>
</template>
 
<script>
import { mapGetters, mapState } from 'vuex'
 
export default {
  props: {
    userInfo: {
      type: Object,
      default: () => {
        return {
          realName: '',
          userName: '',
          role: '',
          imagePath: null
        }
      }
    }
  },
  computed: {
    ...mapGetters('enumItem', [
      'enumFormat'
    ]),
    ...mapState('enumItem', {
      roleEnum: state => state.user.roleEnum
    })
  }
}
</script>
 
<style lang="scss" scoped>
  .box-center {
    margin: 0 auto;
    display: table;
  }
 
  .text-muted {
    color: #777;
  }
 
  .user-profile {
    .user-name {
      font-weight: bold;
    }
 
    .box-center {
      padding-top: 10px;
    }
 
    .user-role {
      padding-top: 10px;
      font-weight: 400;
      font-size: 14px;
    }
 
    .box-social {
      padding-top: 30px;
 
      .el-table {
        border-top: 1px solid #dfe6ec;
      }
    }
 
    .user-follow {
      padding-top: 20px;
    }
  }
 
  .user-bio {
    margin-top: 20px;
    color: #606266;
 
    span {
      padding-left: 4px;
    }
 
    .user-bio-section {
      font-size: 14px;
      padding: 15px 0;
 
      .user-bio-section-header {
        border-bottom: 1px solid #dfe6ec;
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-weight: bold;
      }
    }
  }
</style>