2019-06-18 18:41:09 +08:00
|
|
|
|
<template>
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<div class="home-blog">
|
2019-12-06 19:40:21 +08:00
|
|
|
|
<div class="hero" :style="{ ...bgImageStyle }">
|
|
|
|
|
<div
|
|
|
|
|
class="mask"
|
|
|
|
|
:style="{
|
|
|
|
|
background: `url(${$frontmatter.bgImage ? $withBase($frontmatter.bgImage) : require('../images/home-bg.jpg')}) center/cover no-repeat`}"></div>
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<ModuleTransition>
|
2019-12-06 19:40:21 +08:00
|
|
|
|
<img
|
2019-12-09 11:31:35 +08:00
|
|
|
|
v-if="recoShowModule && $frontmatter.heroImage"
|
|
|
|
|
:style="heroImageStyle || {}"
|
|
|
|
|
:src="$withBase($frontmatter.heroImage)"
|
2019-12-06 19:40:21 +08:00
|
|
|
|
alt="hero">
|
|
|
|
|
</ModuleTransition>
|
2019-12-09 11:31:35 +08:00
|
|
|
|
<ModuleTransition delay="0.04">
|
2019-12-08 20:12:48 +08:00
|
|
|
|
<h1 v-if="$frontmatter.isShowTitleInHome !== false">{{ $frontmatter.heroText || $title || '午后南杂' }}</h1>
|
2019-12-06 00:11:16 +08:00
|
|
|
|
</ModuleTransition>
|
2019-06-18 18:41:09 +08:00
|
|
|
|
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<ModuleTransition delay="0.08">
|
2019-12-15 13:19:22 +08:00
|
|
|
|
<p v-show="recoShowModule" class="description">
|
2019-12-06 00:11:16 +08:00
|
|
|
|
{{ $description || 'Welcome to your vuePress-theme-reco site' }}
|
|
|
|
|
</p>
|
|
|
|
|
</ModuleTransition>
|
|
|
|
|
|
|
|
|
|
<ModuleTransition delay="0.16">
|
2019-12-20 17:12:29 +08:00
|
|
|
|
<p
|
|
|
|
|
class="huawei"
|
2019-12-06 00:22:20 +08:00
|
|
|
|
v-if="recoShowModule && $themeConfig.huawei === true">
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<i class="iconfont reco-huawei" style="color: #fc2d38"></i> 华为,为中华而为之!
|
|
|
|
|
</p>
|
|
|
|
|
</ModuleTransition>
|
2019-06-18 18:41:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<ModuleTransition delay="0.24">
|
2019-12-15 13:19:22 +08:00
|
|
|
|
<div v-show="recoShowModule" class="home-blog-wrapper">
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<div class="blog-list">
|
|
|
|
|
<!-- 博客列表 -->
|
|
|
|
|
<note-abstract
|
|
|
|
|
:data="$recoPosts"
|
|
|
|
|
:currentPage="currentPage"></note-abstract>
|
|
|
|
|
<!-- 分页 -->
|
|
|
|
|
<pagation
|
|
|
|
|
class="pagation"
|
|
|
|
|
:total="$recoPosts.length"
|
|
|
|
|
:currentPage="currentPage"
|
|
|
|
|
@getCurrentPage="getCurrentPage" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info-wrapper">
|
2019-12-19 23:31:41 +08:00
|
|
|
|
<PersonalInfo/>
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<h4><i class="iconfont reco-category"></i> 分类</h4>
|
|
|
|
|
<ul class="category-wrapper">
|
|
|
|
|
<li class="category-item" v-for="(item, index) in this.$categories.list" :key="index">
|
|
|
|
|
<router-link :to="item.path">
|
|
|
|
|
<span class="category-name">{{ item.name }}</span>
|
|
|
|
|
<span class="post-num" :style="{ 'backgroundColor': getOneColor() }">{{ item.pages.length }}</span>
|
|
|
|
|
</router-link>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<hr>
|
|
|
|
|
<h4 v-if="$tags.list.length !== 0"><i class="iconfont reco-tag"></i> 标签</h4>
|
|
|
|
|
<TagList @getCurrentTag="getPagesByTags" />
|
|
|
|
|
<h4 v-if="$themeConfig.friendLink && $themeConfig.friendLink.length !== 0"><i class="iconfont reco-friend"></i> 友链</h4>
|
|
|
|
|
<FriendLink />
|
2019-10-09 09:45:19 +08:00
|
|
|
|
</div>
|
2019-09-20 13:54:13 +08:00
|
|
|
|
</div>
|
2019-12-06 00:11:16 +08:00
|
|
|
|
</ModuleTransition>
|
2019-06-18 18:41:09 +08:00
|
|
|
|
|
2019-12-06 00:11:16 +08:00
|
|
|
|
<ModuleTransition delay="0.36">
|
2019-12-15 13:19:22 +08:00
|
|
|
|
<Content v-show="recoShowModule" class="home-center" custom/>
|
2019-12-06 00:11:16 +08:00
|
|
|
|
</ModuleTransition>
|
2019-06-18 18:41:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2019-12-06 00:11:16 +08:00
|
|
|
|
import TagList from '@theme/components/TagList'
|
|
|
|
|
import FriendLink from '@theme/components/FriendLink'
|
|
|
|
|
import NoteAbstract from '@theme/components/NoteAbstract'
|
2019-12-05 14:59:03 +08:00
|
|
|
|
import pagination from '@theme/mixins/pagination'
|
2019-12-06 00:11:16 +08:00
|
|
|
|
import ModuleTransition from '@theme/components/ModuleTransition'
|
2019-12-19 23:31:41 +08:00
|
|
|
|
import PersonalInfo from '@theme/components/PersonalInfo'
|
2019-12-05 14:59:03 +08:00
|
|
|
|
import { getOneColor } from '@theme/helpers/other'
|
2019-12-15 02:58:48 +08:00
|
|
|
|
import moduleTransitonMixin from '@theme/mixins/moduleTransiton'
|
2019-06-18 18:41:09 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
2019-12-15 02:58:48 +08:00
|
|
|
|
mixins: [pagination, moduleTransitonMixin],
|
2019-12-19 23:31:41 +08:00
|
|
|
|
components: { NoteAbstract, TagList, FriendLink, ModuleTransition, PersonalInfo },
|
2019-06-18 18:41:09 +08:00
|
|
|
|
data () {
|
|
|
|
|
return {
|
2019-07-06 02:00:12 +08:00
|
|
|
|
recoShow: false,
|
2019-10-04 22:35:38 +08:00
|
|
|
|
currentPage: 1,
|
2019-09-20 13:54:13 +08:00
|
|
|
|
tags: []
|
2019-06-18 18:41:09 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
2019-09-20 13:54:13 +08:00
|
|
|
|
actionLink () {
|
2019-10-27 20:34:46 +08:00
|
|
|
|
const {
|
|
|
|
|
actionLink: link,
|
|
|
|
|
actionText: text
|
2019-11-01 19:32:52 +08:00
|
|
|
|
} = this.$frontmatter
|
2019-10-27 20:34:46 +08:00
|
|
|
|
|
2019-06-18 18:41:09 +08:00
|
|
|
|
return {
|
2019-10-27 20:34:46 +08:00
|
|
|
|
link,
|
|
|
|
|
text
|
2019-09-20 13:54:13 +08:00
|
|
|
|
}
|
2019-06-18 18:41:09 +08:00
|
|
|
|
},
|
|
|
|
|
heroImageStyle () {
|
2019-11-01 19:32:52 +08:00
|
|
|
|
return this.$frontmatter.heroImageStyle || {
|
2019-06-18 18:41:09 +08:00
|
|
|
|
maxHeight: '200px',
|
|
|
|
|
margin: '6rem auto 1.5rem'
|
|
|
|
|
}
|
2019-07-06 02:00:12 +08:00
|
|
|
|
},
|
|
|
|
|
bgImageStyle () {
|
2019-10-27 20:34:46 +08:00
|
|
|
|
const initBgImageStyle = {
|
2019-07-06 02:00:12 +08:00
|
|
|
|
height: '350px',
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
overflow: 'hidden'
|
|
|
|
|
}
|
2019-10-27 20:34:46 +08:00
|
|
|
|
const {
|
|
|
|
|
bgImageStyle
|
2019-11-01 19:32:52 +08:00
|
|
|
|
} = this.$frontmatter
|
2019-10-04 22:35:38 +08:00
|
|
|
|
|
2019-10-27 20:34:46 +08:00
|
|
|
|
return bgImageStyle ? { ...initBgImageStyle, ...bgImageStyle } : initBgImageStyle
|
|
|
|
|
},
|
2019-10-04 22:35:38 +08:00
|
|
|
|
heroHeight () {
|
|
|
|
|
return document.querySelector('.hero').clientHeight
|
2019-07-06 02:00:12 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2019-06-18 18:41:09 +08:00
|
|
|
|
mounted () {
|
|
|
|
|
this.recoShow = true
|
2019-11-25 23:49:58 +08:00
|
|
|
|
this._setPage(this._getStoragePage())
|
2019-06-18 18:41:09 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2019-10-04 22:35:38 +08:00
|
|
|
|
// 获取当前页码
|
|
|
|
|
getCurrentPage (page) {
|
|
|
|
|
this._setPage(page)
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
window.scrollTo(0, this.heroHeight)
|
|
|
|
|
}, 100)
|
|
|
|
|
},
|
2019-06-18 18:41:09 +08:00
|
|
|
|
// 根据分类获取页面数据
|
|
|
|
|
getPages () {
|
|
|
|
|
let pages = this.$site.pages
|
|
|
|
|
pages = pages.filter(item => {
|
2019-10-17 19:33:21 +08:00
|
|
|
|
const { home, date } = item.frontmatter
|
|
|
|
|
return !(home == true || date === undefined)
|
2019-06-18 18:41:09 +08:00
|
|
|
|
})
|
|
|
|
|
// reverse()是为了按时间最近排序排序
|
|
|
|
|
this.pages = pages.length == 0 ? [] : pages
|
|
|
|
|
},
|
2019-11-20 16:47:05 +08:00
|
|
|
|
getPagesByTags (tagInfo) {
|
2019-11-25 23:49:58 +08:00
|
|
|
|
this.$router.push({ path: tagInfo.path })
|
2019-07-06 02:00:12 +08:00
|
|
|
|
},
|
2019-10-04 22:35:38 +08:00
|
|
|
|
_setPage (page) {
|
|
|
|
|
this.currentPage = page
|
|
|
|
|
this.$page.currentPage = page
|
2019-11-25 23:49:58 +08:00
|
|
|
|
this._setStoragePage(page)
|
2019-12-05 14:59:03 +08:00
|
|
|
|
},
|
|
|
|
|
getOneColor
|
2019-06-18 18:41:09 +08:00
|
|
|
|
}
|
2019-09-20 13:54:13 +08:00
|
|
|
|
}
|
2019-06-18 18:41:09 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus">
|
|
|
|
|
.home-blog {
|
|
|
|
|
padding: $navbarHeight 0 0;
|
|
|
|
|
margin: 0px auto;
|
|
|
|
|
|
|
|
|
|
.hero {
|
2019-12-06 19:40:21 +08:00
|
|
|
|
position relative
|
|
|
|
|
.mask {
|
|
|
|
|
position absolute
|
|
|
|
|
top 0
|
|
|
|
|
bottom 0
|
|
|
|
|
left 0
|
|
|
|
|
right 0
|
2019-12-09 11:31:35 +08:00
|
|
|
|
z-index -1
|
2019-12-06 19:40:21 +08:00
|
|
|
|
&:after {
|
|
|
|
|
display block
|
|
|
|
|
content ' '
|
|
|
|
|
background var(--mask-color)
|
|
|
|
|
position absolute
|
|
|
|
|
top 0
|
|
|
|
|
bottom 0
|
|
|
|
|
left 0
|
|
|
|
|
right 0
|
|
|
|
|
z-index 0
|
|
|
|
|
opacity .2
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-18 18:41:09 +08:00
|
|
|
|
figure {
|
|
|
|
|
position absolute
|
|
|
|
|
background yellow
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
2019-07-25 19:01:14 +08:00
|
|
|
|
margin:7rem auto 1.8rem;
|
2019-06-18 18:41:09 +08:00
|
|
|
|
font-size: 2.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, .description, .action, .huawei {
|
2019-12-03 17:17:37 +08:00
|
|
|
|
color #fff
|
2019-06-18 18:41:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.description {
|
|
|
|
|
margin: 1.8rem auto;
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-06 02:00:12 +08:00
|
|
|
|
.home-blog-wrapper {
|
2019-06-18 18:41:09 +08:00
|
|
|
|
display flex
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
margin 20px auto 0
|
|
|
|
|
max-width 1126px
|
2019-10-08 22:57:03 +08:00
|
|
|
|
.blog-list {
|
|
|
|
|
flex auto
|
2019-12-21 01:05:30 +08:00
|
|
|
|
width 0
|
|
|
|
|
.abstract-wrapper {
|
|
|
|
|
.abstract-item:last-child {
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-08 22:57:03 +08:00
|
|
|
|
}
|
2019-06-18 18:41:09 +08:00
|
|
|
|
.info-wrapper {
|
2019-10-11 14:41:25 +08:00
|
|
|
|
position: -webkit-sticky;
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 70px;
|
2019-06-18 18:41:09 +08:00
|
|
|
|
transition all .3s
|
|
|
|
|
margin-left 15px;
|
2019-10-09 10:44:26 +08:00
|
|
|
|
flex 0 0 300px
|
2019-06-18 18:41:09 +08:00
|
|
|
|
height auto;
|
2019-11-27 20:03:10 +08:00
|
|
|
|
box-shadow var(--box-shadow);
|
2019-10-17 14:28:37 +08:00
|
|
|
|
border-radius $borderRadius
|
2019-07-06 02:00:12 +08:00
|
|
|
|
box-sizing border-box
|
|
|
|
|
padding 0 15px
|
2019-12-08 20:08:19 +08:00
|
|
|
|
background var(--background-color)
|
2019-06-18 18:41:09 +08:00
|
|
|
|
&:hover {
|
2019-11-27 20:03:10 +08:00
|
|
|
|
box-shadow: var(--box-shadow-hover);
|
2019-06-18 18:41:09 +08:00
|
|
|
|
}
|
2019-11-27 20:03:10 +08:00
|
|
|
|
h4 {
|
|
|
|
|
color var(--text-color)
|
|
|
|
|
}
|
2019-07-06 02:00:12 +08:00
|
|
|
|
.category-wrapper {
|
|
|
|
|
list-style none
|
|
|
|
|
padding-left 0
|
|
|
|
|
.category-item {
|
2019-10-04 22:50:05 +08:00
|
|
|
|
margin-bottom .4rem
|
2019-07-06 02:00:12 +08:00
|
|
|
|
padding: .4rem .8rem;
|
2019-09-20 13:54:13 +08:00
|
|
|
|
transition: all .5s
|
2019-10-17 14:28:37 +08:00
|
|
|
|
border-radius $borderRadius
|
2019-11-27 20:03:10 +08:00
|
|
|
|
box-shadow var(--box-shadow)
|
2019-12-08 20:08:19 +08:00
|
|
|
|
background-color var(--background-color)
|
2019-07-06 02:00:12 +08:00
|
|
|
|
&:hover {
|
2019-11-13 19:16:08 +08:00
|
|
|
|
transform scale(1.04)
|
2019-07-06 02:00:12 +08:00
|
|
|
|
}
|
|
|
|
|
a {
|
|
|
|
|
display flex
|
|
|
|
|
justify-content: space-between
|
|
|
|
|
.post-num {
|
|
|
|
|
width 1.6rem;
|
|
|
|
|
height 1.6rem
|
|
|
|
|
text-align center
|
|
|
|
|
line-height 1.6rem
|
2019-10-17 14:28:37 +08:00
|
|
|
|
border-radius $borderRadius
|
2019-07-06 02:00:12 +08:00
|
|
|
|
background #eee
|
|
|
|
|
font-size .6rem
|
2019-11-13 19:16:08 +08:00
|
|
|
|
color #fff
|
2019-07-06 02:00:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-18 18:41:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: $MQMobile) {
|
2019-07-06 02:00:12 +08:00
|
|
|
|
.home-blog {
|
2019-06-18 18:41:09 +08:00
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
|
padding-right: 1.5rem;
|
|
|
|
|
.hero {
|
|
|
|
|
margin 0 -1.5rem
|
2019-11-27 13:29:14 +08:00
|
|
|
|
height 450px
|
2019-06-18 18:41:09 +08:00
|
|
|
|
img {
|
|
|
|
|
max-height: 210px;
|
|
|
|
|
margin: 2rem auto 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
margin: 6rem auto 1.8rem ;
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, .description, .action {
|
|
|
|
|
// margin: 1.2rem auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.description {
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-button {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
padding: 0.6rem 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-06 02:00:12 +08:00
|
|
|
|
.home-blog-wrapper {
|
2019-06-18 18:41:09 +08:00
|
|
|
|
.info-wrapper {
|
2019-07-06 02:00:12 +08:00
|
|
|
|
display none!important
|
2019-06-18 18:41:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: $MQMobileNarrow) {
|
2019-07-06 02:00:12 +08:00
|
|
|
|
.home-blog {
|
2019-06-18 18:41:09 +08:00
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
|
padding-right: 1.5rem;
|
|
|
|
|
|
|
|
|
|
.hero {
|
|
|
|
|
margin 0 -1.5rem
|
2019-07-06 02:00:12 +08:00
|
|
|
|
height 350px
|
2019-06-18 18:41:09 +08:00
|
|
|
|
img {
|
|
|
|
|
max-height: 210px;
|
|
|
|
|
margin: 2rem auto 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
margin: 6rem auto 1.8rem ;
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, .description, .action {
|
|
|
|
|
// margin: 1.2rem auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.description {
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-button {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
padding: 0.6rem 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-06 02:00:12 +08:00
|
|
|
|
.home-blog-wrapper {
|
2019-06-18 18:41:09 +08:00
|
|
|
|
.info-wrapper {
|
2019-07-06 02:00:12 +08:00
|
|
|
|
display none!important
|
2019-06-18 18:41:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|