index.vue 3.6 KB
Newer Older
C
chen-xt 已提交
1 2
<template>
  <div :class="prefixCls">
V
vben 已提交
3 4 5 6
    <a-row :class="`${prefixCls}-top`">
      <a-col :span="9" :class="`${prefixCls}-col`">
        <a-row>
          <a-col :span="8">
C
chen-xt 已提交
7 8 9 10 11
            <div :class="`${prefixCls}-top__avatar`">
              <img width="70" :src="headerImg" />
              <span>Serati Ma</span>
              <div>海纳百川,有容乃大</div>
            </div>
V
vben 已提交
12 13
          </a-col>
          <a-col :span="16">
C
chen-xt 已提交
14 15 16 17 18 19 20 21
            <div :class="`${prefixCls}-top__detail`">
              <template v-for="(detail, index) in details" :key="index">
                <p>
                  <Icon :icon="detail.icon" />
                  {{ detail.title }}
                </p>
              </template>
            </div>
V
vben 已提交
22 23 24 25
          </a-col>
        </a-row>
      </a-col>
      <a-col :span="7" :class="`${prefixCls}-col`">
C
chen-xt 已提交
26 27 28 29 30
        <CollapseContainer title="标签" :canExpan="false">
          <template v-for="(tag, index) in tags" :key="index">
            <Tag class="mb-2">{{ tag }}</Tag>
          </template>
        </CollapseContainer>
V
vben 已提交
31 32
      </a-col>
      <a-col :span="8" :class="`${prefixCls}-col`">
C
chen-xt 已提交
33 34 35 36 37 38
        <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>
V
vben 已提交
39 40
      </a-col>
    </a-row>
C
chen-xt 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53
    <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">
C
chen-xt 已提交
54
  import { Tag, Tabs } from 'ant-design-vue';
C
chen-xt 已提交
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 118 119 120 121 122 123 124 125 126 127 128 129 130
  import { defineComponent } from 'vue';
  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';

  export default defineComponent({
    components: {
      CollapseContainer,
      Icon,
      Tag,
      Tabs,
      TabPane: Tabs.TabPane,
      Article,
      Application,
      Project,
    },
    setup() {
      return {
        prefixCls: 'account-center',
        headerImg,
        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;
      background: #fff;
      border-radius: 3px;

      &__avatar {
        text-align: center;

        img {
          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;
C
chen-xt 已提交
131
          padding: 4px 24px;
C
chen-xt 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
        }

        span {
          margin-left: 3px;
        }
      }
    }

    &-bottom {
      padding: 10px;
      margin: 0 16px 16px 16px;
      background: #fff;
      border-radius: 3px;
    }
  }
</style>