2020-08-02 00:25:44 +08:00
|
|
|
<template>
|
|
|
|
<el-row class="wrapper">
|
|
|
|
<el-col>
|
2021-01-06 16:23:44 +08:00
|
|
|
<el-col>
|
2020-08-02 00:25:44 +08:00
|
|
|
<el-col>
|
2021-07-29 11:23:46 +08:00
|
|
|
<el-col :span="6">
|
|
|
|
<el-image style="width: 200px;" :src="portfolio.headImgUrl"></el-image>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
|
|
<el-col>
|
|
|
|
<h1>{{ portfolio.portfolioTitle }}</h1>
|
|
|
|
</el-col>
|
|
|
|
<el-col style="margin-bottom: .5rem;">
|
|
|
|
<span class="text-default" style="padding-right: 1rem;">作者</span>
|
|
|
|
<el-link target="_blank" :href="'/user/' + portfolio.portfolioAuthor.userAccount" class="text-default">
|
|
|
|
<el-avatar :src="portfolio.portfolioAuthorAvatarUrl" :size="16"></el-avatar>
|
|
|
|
{{ portfolio.portfolioAuthorName }}
|
|
|
|
</el-link>
|
|
|
|
</el-col>
|
|
|
|
<el-col style="margin-bottom: .5rem;">
|
|
|
|
<span class="text-default" style="padding-right: 1rem;">文章</span> {{portfolio.articleNumber}}篇
|
|
|
|
</el-col>
|
|
|
|
<el-col style="margin-bottom: .5rem;" v-html="portfolio.portfolioDescription"></el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-col v-if="isAuthor" style="margin-top: .5rem;text-align: right;">
|
|
|
|
<el-button @click="managerPortfolio(portfolio.idPortfolio)" plain>管理</el-button>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
2020-08-02 00:25:44 +08:00
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col>
|
2021-04-27 21:40:22 +08:00
|
|
|
<el-divider></el-divider>
|
2020-08-02 00:25:44 +08:00
|
|
|
<el-col>
|
2020-08-04 21:50:59 +08:00
|
|
|
<article-list :articles="articles" @currentChange="currentChangeArticle"></article-list>
|
2020-08-02 00:25:44 +08:00
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {mapState} from 'vuex';
|
|
|
|
import ArticleList from "../../components/archive/list";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "PortfolioDetail",
|
|
|
|
components: {ArticleList},
|
|
|
|
validate({params, store}) {
|
|
|
|
return params.portfolio_id && !isNaN(Number(params.portfolio_id))
|
|
|
|
},
|
2021-02-03 16:10:57 +08:00
|
|
|
fetch({store, params, query, error}) {
|
|
|
|
params.page = query.page || 1
|
2020-08-02 00:25:44 +08:00
|
|
|
return Promise.all([
|
|
|
|
store
|
|
|
|
.dispatch('portfolio/fetchDetail', params)
|
|
|
|
.catch(err => error({statusCode: 404})),
|
|
|
|
store.dispatch('portfolio/fetchArticleList', params)
|
|
|
|
])
|
|
|
|
},
|
2021-02-03 16:10:57 +08:00
|
|
|
watch: {
|
|
|
|
'$route.query': function () {
|
|
|
|
this.$store.dispatch('portfolio/fetchArticleList', {
|
|
|
|
page: this.$route.query.page || 1,
|
|
|
|
portfolio_id: this.routePortfolioId
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
2020-08-02 00:25:44 +08:00
|
|
|
computed: {
|
|
|
|
...mapState({
|
|
|
|
portfolio: state => state.portfolio.detail.data,
|
|
|
|
articles: state => state.portfolio.articles,
|
|
|
|
isFetching: state => state.portfolio.detail.fetching,
|
|
|
|
isMobile: state => state.global.isMobile,
|
|
|
|
user: state => state.oauth,
|
2020-08-11 14:41:48 +08:00
|
|
|
avatar: state => state.userInfo?.avatarURL
|
2020-08-02 00:25:44 +08:00
|
|
|
}),
|
|
|
|
isAuthor() {
|
2020-08-11 14:41:48 +08:00
|
|
|
let account = this.$store.state.userInfo?.nickname;
|
2020-08-02 00:25:44 +08:00
|
|
|
if (account) {
|
|
|
|
if (account === this.portfolio.portfolioAuthor.userNickname) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
routePortfolioId() {
|
|
|
|
return Number(this.$route.params.portfolio_id)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
head() {
|
|
|
|
return {
|
|
|
|
title: this.portfolio.portfolioTitle || 'RYMCU - 嵌入式知识学习交流平台',
|
|
|
|
meta: [
|
|
|
|
{
|
|
|
|
name: 'keywords',
|
|
|
|
content: this.portfolio.portfolioTags || 'RYMCU'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'description',
|
|
|
|
content: this.portfolio.portfolioPreviewContent
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'site_name',
|
|
|
|
content: 'RYMCU'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'url',
|
|
|
|
content: this.portfolio.portfolioPermalink
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'og:title',
|
|
|
|
content: this.portfolio.portfolioTitle + ' - RYMCU'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'og:description',
|
|
|
|
content: this.portfolio.portfolioPreviewContent
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'og:site_name',
|
|
|
|
content: 'RYMCU'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'og:url',
|
|
|
|
content: this.portfolio.portfolioPermalink
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onRouter(name, data) {
|
|
|
|
if (name === 'article') {
|
|
|
|
this.$router.push({
|
|
|
|
path: data
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.$router.push(
|
|
|
|
{
|
|
|
|
path: '/user/' + data
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
managerPortfolio(id) {
|
|
|
|
this.$router.push(
|
|
|
|
{
|
|
|
|
path: `/portfolio/manager/${id}`
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
currentChangeArticle(page) {
|
2021-02-03 16:10:57 +08:00
|
|
|
this.$router.push(
|
|
|
|
{
|
|
|
|
path: `/portfolio/${this.routePortfolioId}?page=${page}`
|
|
|
|
}
|
|
|
|
)
|
2020-08-02 00:25:44 +08:00
|
|
|
}
|
2020-11-30 23:56:08 +08:00
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.$store.commit('setActiveMenu', 'portfolioDetail');
|
2020-08-02 00:25:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|