123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- <template>
- <div class="page-header-index-wide page-header-wrapper-grid-content-main">
- <a-row :gutter="24">
- <a-col :md="24" :lg="7">
- <a-card :bordered="false">
- <div class="account-center-avatarHolder">
- <div class="avatar">
- <img :src="getAvatar()"/>
- </div>
- <div class="username">{{ nickname() }}</div>
- <div class="bio">海纳百川,有容乃大</div>
- </div>
- <div class="account-center-detail">
- <p>
- <i class="title"></i>交互专家
- </p>
- <p>
- <i class="group"></i>蚂蚁金服-某某某事业群-某某平台部-某某技术部-UED
- </p>
- <p>
- <i class="address"></i><span>浙江省</span><span>杭州市</span>
- </p>
- </div>
- <a-divider />
- <div class="account-center-tags">
- <div class="tagsTitle">标签</div>
- <div>
- <template v-for="(tag, index) in tags">
- <a-tooltip v-if="tag.length > 20" :key="tag" :title="tag">
- <a-tag :key="tag" :closable="index !== 0" :afterClose="() => handleTagClose(tag)">
- {{ `${tag.slice(0, 20)}...` }}
- </a-tag>
- </a-tooltip>
- <a-tag v-else :key="tag" :closable="index !== 0" :afterClose="() => handleTagClose(tag)">{{ tag }}</a-tag>
- </template>
- <a-input
- v-if="tagInputVisible"
- ref="tagInput"
- type="text"
- size="small"
- :style="{ width: '78px' }"
- :value="tagInputValue"
- @change="handleInputChange"
- @blur="handleTagInputConfirm"
- @keyup.enter="handleTagInputConfirm"
- />
- <a-tag v-else @click="showTagInput" style="background: #fff; borderStyle: dashed;">
- <a-icon type="plus" /> New Tag
- </a-tag>
- </div>
- </div>
- <a-divider :dashed="true" />
- <div class="account-center-team">
- <div class="teamTitle">团队</div>
- <a-spin :spinning="teamSpinning">
- <div class="members">
- <a-row>
- <a-col :span="12" v-for="(item, index) in teams" :key="index">
- <a>
- <a-avatar size="small" :src="item.avatar" />
- <span class="member">{{ item.name }}</span>
- </a>
- </a-col>
- </a-row>
- </div>
- </a-spin>
- </div>
- </a-card>
- </a-col>
- <a-col :md="24" :lg="17">
- <a-card
- style="width:100%"
- :bordered="false"
- :tabList="tabListNoTitle"
- :activeTabKey="noTitleKey"
- @tabChange="key => handleTabChange(key, 'noTitleKey')"
- >
- <article-page v-if="noTitleKey === 'article'"></article-page>
- <app-page v-else-if="noTitleKey === 'app'"></app-page>
- <project-page v-else-if="noTitleKey === 'project'"></project-page>
- </a-card>
- </a-col>
- </a-row>
- </div>
- </template>
- <script>
- import PageLayout from '@/components/page/PageLayout'
- import RouteView from "@/components/layouts/RouteView"
- import { AppPage, ArticlePage, ProjectPage } from './page'
- import { mapGetters } from 'vuex'
- import { getFileAccessHttpUrl } from '@/api/manage';
- export default {
- components: {
- RouteView,
- PageLayout,
- AppPage,
- ArticlePage,
- ProjectPage
- },
- data() {
- return {
- tags: ['很有想法的', '专注设计', '辣~', '大长腿', '川妹子', '海纳百川'],
- tagInputVisible: false,
- tagInputValue: '',
- teams: [],
- teamSpinning: true,
- tabListNoTitle: [{
- key: 'article',
- tab: '文章(8)',
- }, {
- key: 'app',
- tab: '应用(8)',
- }, {
- key: 'project',
- tab: '项目(8)',
- }
- ],
- noTitleKey: 'app',
- }
- },
- mounted () {
- this.getTeams()
- },
- methods: {
- ...mapGetters(["nickname", "avatar"]),
- getAvatar(){
- return getFileAccessHttpUrl(this.avatar());
- },
- getTeams() {
- this.$http.get('/mock/api/workplace/teams')
- .then(res => {
- this.teams = res.result
- this.teamSpinning = false
- })
- },
- handleTabChange (key, type) {
- this[type] = key
- },
- handleTagClose (removeTag) {
- const tags = this.tags.filter(tag => tag != removeTag)
- this.tags = tags
- },
- showTagInput () {
- this.tagInputVisible = true
- this.$nextTick(() => {
- this.$refs.tagInput.focus()
- })
- },
- handleInputChange (e) {
- this.tagInputValue = e.target.value
- },
- handleTagInputConfirm () {
- const inputValue = this.tagInputValue
- let tags = this.tags
- if (inputValue && tags.indexOf(inputValue) === -1) {
- tags = [...tags, inputValue]
- }
- Object.assign(this, {
- tags,
- tagInputVisible: false,
- tagInputValue: ''
- })
- }
- },
- }
- </script>
- <style lang="less" scoped>
- .page-header-wrapper-grid-content-main {
- width: 100%;
- height: 100%;
- min-height: 100%;
- transition: .3s;
- .account-center-avatarHolder {
- text-align: center;
- margin-bottom: 24px;
- & > .avatar {
- margin: 0 auto;
- width: 104px;
- height: 104px;
- margin-bottom: 20px;
- border-radius: 50%;
- overflow: hidden;
- img {
- height: 100%;
- width: 100%;
- }
- }
- .username {
- color: rgba(0, 0, 0, 0.85);
- font-size: 20px;
- line-height: 28px;
- font-weight: 500;
- margin-bottom: 4px;
- }
- }
- .account-center-detail {
- p {
- margin-bottom: 8px;
- padding-left: 26px;
- position: relative;
- }
- i {
- position: absolute;
- height: 14px;
- width: 14px;
- left: 0;
- top: 4px;
- background: url(https://gw.alipayobjects.com/zos/rmsportal/pBjWzVAHnOOtAUvZmZfy.svg)
- }
- .title {
- background-position: 0 0;
- }
- .group {
- background-position: 0 -22px;
- }
- .address {
- background-position: 0 -44px;
- }
- }
- .account-center-tags {
- .ant-tag {
- margin-bottom: 8px;
- }
- }
- .account-center-team {
- .members {
- a {
- display: block;
- margin: 12px 0;
- line-height: 24px;
- height: 24px;
- .member {
- font-size: 14px;
- color: rgba(0, 0, 0, .65);
- line-height: 24px;
- max-width: 100px;
- vertical-align: top;
- margin-left: 12px;
- transition: all 0.3s;
- display: inline-block;
- }
- &:hover {
- span {
- color: #1890ff;
- }
- }
- }
- }
- }
- .tagsTitle, .teamTitle {
- font-weight: 500;
- color: rgba(0,0,0,.85);
- margin-bottom: 12px;
- }
- }
- </style>
|