2020-06-19 17:37:45 +08:00
|
|
|
<template>
|
2023-08-28 12:59:49 +08:00
|
|
|
<div class="wrapper">
|
|
|
|
<el-row>
|
|
|
|
<el-col :xs="24" :sm="24" :xl="24">
|
|
|
|
|
|
|
|
<el-col v-for="article in articles.list" :key="article.idArticle" style="padding-bottom: 1rem;">
|
|
|
|
<el-card style="cursor: pointer" @click.native="routerArticle(article.articleLink)">
|
|
|
|
<div class="card-body d-flex flex-column">
|
2020-12-18 14:13:03 +08:00
|
|
|
<span v-if="isPerfect(article.articlePerfect)" style="color: gold;" title="优选">
|
2021-07-29 11:22:52 +08:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
|
|
style="fill: #FFB71B;"><path
|
|
|
|
d="M12 22c3.859 0 7-3.141 7-7s-3.141-7-7-7c-3.86 0-7 3.141-7 7s3.14 7 7 7zm0-12c2.757 0 5 2.243 5 5s-2.243 5-5 5-5-2.243-5-5 2.243-5 5-5zm-1-8H7v5.518a8.957 8.957 0 0 1 4-1.459V2zm6 0h-4v4.059a8.957 8.957 0 0 1 4 1.459V2z"></path><path
|
|
|
|
d="m10.019 15.811-.468 2.726L12 17.25l2.449 1.287-.468-2.726 1.982-1.932-2.738-.398L12 11l-1.225 2.481-2.738.398z"></path></svg>
|
2020-12-18 14:13:03 +08:00
|
|
|
</span>
|
2023-08-28 12:59:49 +08:00
|
|
|
<span style="font-size: 20px" v-html="article.articleTitle"> </span>
|
|
|
|
<el-tag size="mini" v-for="tag in article.tags" :key="tag.idTag" style="margin-right: 10px"> {{ tag.tagTitle }}</el-tag>
|
|
|
|
|
2023-08-31 15:59:43 +08:00
|
|
|
<div class="text-muted article-summary-md" v-html="article.articlePreviewContent"></div>
|
2023-08-28 12:59:49 +08:00
|
|
|
<el-row>
|
|
|
|
<el-col :xs="3" :sm="1" :xl="1" class="mr-3">
|
|
|
|
<el-avatar v-if="article.articleAuthorAvatarUrl" size="medium"
|
|
|
|
:src="article.articleAuthorAvatarUrl"></el-avatar>
|
|
|
|
<el-avatar v-else size="medium"
|
|
|
|
src="https://static.rymcu.com/article/1578475481946.png"></el-avatar>
|
|
|
|
</el-col>
|
|
|
|
<el-col :xs="20" :sm="20" :xl="20">
|
2021-07-29 11:22:52 +08:00
|
|
|
<el-link target="_blank" :href="'/user/' + article.articleAuthor.userAccount" class="text-default">
|
2020-08-02 00:25:44 +08:00
|
|
|
{{ article.articleAuthorName }}
|
|
|
|
</el-link>
|
2020-06-20 00:36:35 +08:00
|
|
|
<small class="d-block text-muted">{{ article.timeAgo }}</small>
|
2023-08-28 12:59:49 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col class="text-right" :xs="1" :sm="2" :xl="2" style="margin-top: 10px">
|
|
|
|
<el-link rel="nofollow" :underline="false" title="总浏览数"><i class="el-icon-s-data" style="color: #C0C4CC;"></i><span
|
|
|
|
style="color: #C0C4CC;">{{ article.articleViewCount }}</span>
|
|
|
|
</el-link>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</div>
|
2020-06-20 00:36:35 +08:00
|
|
|
</el-card>
|
|
|
|
</el-col>
|
|
|
|
<el-col>
|
|
|
|
<div class="vertical-container text-center">
|
2022-07-25 06:45:33 +08:00
|
|
|
<el-pagination :hide-on-single-page="true"
|
2020-06-20 00:36:35 +08:00
|
|
|
layout="prev, pager, next"
|
2022-07-25 06:45:33 +08:00
|
|
|
:page-size="articles.pageSize"
|
|
|
|
:current-page="articles.pageNum"
|
|
|
|
:total="articles.total"
|
2020-10-20 22:28:21 +08:00
|
|
|
prev-text="上一页"
|
|
|
|
next-text="下一页"
|
2020-06-20 00:36:35 +08:00
|
|
|
@current-change="currentChange">
|
|
|
|
</el-pagination>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
2023-08-28 12:59:49 +08:00
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</div>
|
2020-06-19 17:37:45 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-12-18 14:13:03 +08:00
|
|
|
export default {
|
|
|
|
name: "ArticleList",
|
|
|
|
props: {
|
|
|
|
articles: {
|
|
|
|
type: Object
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
currentChange(page) {
|
|
|
|
this.$emit('currentChange', page);
|
2020-06-20 00:36:35 +08:00
|
|
|
},
|
2020-12-18 14:13:03 +08:00
|
|
|
isPerfect(articlePerfect) {
|
|
|
|
return articlePerfect === '1';
|
2023-08-28 12:59:49 +08:00
|
|
|
},
|
|
|
|
routerArticle(row) {
|
|
|
|
this.$router.push(row)
|
2020-06-19 17:37:45 +08:00
|
|
|
}
|
2023-08-28 12:59:49 +08:00
|
|
|
|
|
|
|
|
2020-06-22 17:13:42 +08:00
|
|
|
}
|
2020-12-18 14:13:03 +08:00
|
|
|
}
|
2020-06-19 17:37:45 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|