You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
376 lines
9.9 KiB
376 lines
9.9 KiB
<template> |
|
<div class="wrap"> |
|
<el-carousel :interval="6000" |
|
:arrow="(modules[0] && modules[0].list.filter(e => e.isEnable).length > 1) ? 'hover' : 'never'" |
|
:indicator-position="modules[0].list.filter(e => e.isEnable).length > 1 ? '' : 'none'"> |
|
<template v-for="(item, i) in modules[0].list"> |
|
<el-carousel-item v-if="item.pic && item.isEnable" |
|
:key="i"> |
|
<div :class="['banner-item', {'cursor-pointer': isLink(item.link.linkName)}]" |
|
@click="openLink(item)"> |
|
<img :src="item.pic" |
|
alt=""> |
|
<p class="banner-name">{{ item.title }}</p> |
|
</div> |
|
</el-carousel-item> |
|
</template> |
|
</el-carousel> |
|
|
|
<div class="block"> |
|
<div class="inner"> |
|
<ul class="card"> |
|
<!-- <li class="wow fadeInDown" |
|
data-wow-delay="0.1s"> |
|
<img class="pic" |
|
:src="modules[1].form.pic" |
|
alt=""> |
|
<div class="texts"> |
|
<h6>{{ modules[1].form.title }}</h6> |
|
<p class="text">{{ modules[1].form.des }}</p> |
|
</div> |
|
<div class="arrow"> |
|
<img src="@/assets/images/arrow-white.png" |
|
alt="" |
|
:class="{'cursor-pointer': isLink(modules[1].form.link.linkName)}" |
|
@click="openLink(modules[1].form)"> |
|
</div> |
|
</li> --> |
|
<li class="wow fadeInDown" |
|
data-wow-delay="0.3s"> |
|
<img class="pic" |
|
:src="modules[2].form.pic" |
|
alt=""> |
|
<div class="texts"> |
|
<h6>{{ modules[2].form.title }}</h6> |
|
<p class="text">{{ modules[2].form.des }}</p> |
|
</div> |
|
<div class="arrow"> |
|
<img src="@/assets/images/arrow-white.png" |
|
alt="" |
|
:class="{'cursor-pointer': isLink(modules[2].form.link.linkName)}" |
|
@click="openLink(modules[2].form)"> |
|
</div> |
|
</li> |
|
<li class="wow fadeInDown" |
|
data-wow-delay="0.5s"> |
|
<img class="pic" |
|
:src="modules[3].form.pic" |
|
alt=""> |
|
<div class="texts"> |
|
<h6>{{ modules[3].form.title }}</h6> |
|
<p class="text">{{ modules[3].form.des }}</p> |
|
</div> |
|
<div class="arrow"> |
|
<img src="@/assets/images/arrow-white.png" |
|
alt="" |
|
:class="{'cursor-pointer': isLink(modules[3].form.link.linkName)}" |
|
@click="openLink(modules[3].form)"> |
|
</div> |
|
</li> |
|
<li class="wow fadeInDown" |
|
data-wow-delay="0.7s"> |
|
<img class="pic" |
|
:src="modules[4].form.pic" |
|
alt=""> |
|
<div class="texts"> |
|
<h6>{{ modules[4].form.title }}</h6> |
|
<p class="text">{{ modules[4].form.des }}</p> |
|
</div> |
|
<div class="arrow"> |
|
<img src="@/assets/images/arrow-white.png" |
|
alt="" |
|
:class="{'cursor-pointer': isLink(modules[4].form.link.linkName)}" |
|
@click="openLink(modules[4].form)"> |
|
</div> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<div class="block gray"> |
|
<div class="inner"> |
|
<h2 class="b-title wow fadeInUp">{{ modules[5].form.title }}</h2> |
|
<p class="intro wow fadeInUp" |
|
data-wow-delay="0.5s">{{ modules[5].form.des }}</p> |
|
<ul class="people"> |
|
<template v-for="(item, i) in modules[6].list"> |
|
<li v-if="item.isEnable" |
|
:key="i" |
|
class="wow fadeInDown" |
|
data-wow-delay="0.5s" |
|
:class="{'cursor-pointer': isLink(item.link.linkName)}" |
|
@click="openLink(item)"> |
|
<img class="comma" |
|
src="@/assets/images/comma.png" |
|
alt=""> |
|
<div class="left"> |
|
<h6>{{ item.title }}</h6> |
|
<div class="des">{{ item.des }}</div> |
|
</div> |
|
<img class="pic" |
|
:src="item.pic" |
|
alt=""> |
|
</li> |
|
</template> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<ul class="shows"> |
|
<template v-for="(item, i) in modules[7].list"> |
|
<li v-if="item.isEnable" |
|
:key="i" |
|
class="wow fadeInDown" |
|
data-wow-delay="0.3s"> |
|
<div class="left"> |
|
<h6>{{ item.title }}</h6> |
|
<div class="sub">{{ item.subTitle }}</div> |
|
<div class="des">{{ item.des }}</div> |
|
<img src="@/assets/images/arrow-white.png" |
|
alt="" |
|
class="icon" |
|
:class="{'arrow': isLink(item.link.linkName)}" |
|
@click="openLink(item)"> |
|
</div> |
|
<img class="pic" |
|
:src="item.pic" |
|
alt=""> |
|
</li> |
|
</template> |
|
</ul> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
import mixins from '@/mixins/page' |
|
import Setting from '@/setting' |
|
import Util from '@/libs/util' |
|
import WOW from 'wow.js' |
|
export default { |
|
mixins: [mixins], |
|
data () { |
|
return { |
|
|
|
} |
|
}, |
|
mounted () { |
|
new WOW().init() |
|
}, |
|
methods: { |
|
// 获取文章详情 |
|
getInfo () { |
|
// 预览/详情 |
|
this.$post(`${this.api[this.preview ? 'getRedisCache' : 'findPage']}?columnId=${this.id}`).then(({ data }) => { |
|
if (data.length) { |
|
// state:已发布(1)则取theEditedJson,草稿(0)则取jsonBeforeEditing |
|
const json = JSON.parse(this.preview ? |
|
data : |
|
data[data.length - 1][data[data.length - 1].state ? 'theEditedJson' : 'jsonBeforeEditing']) |
|
this.modules = json |
|
console.log("🚀 ~ file: index.vue ~ line 180 ~ this.$post ~ json", json) |
|
} |
|
}).catch(err => { }) |
|
}, |
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
@import url(../../plugins/wow/animate.css); |
|
@import '../../styles/page/page.scss'; |
|
.wrap { |
|
/deep/ .el-carousel { |
|
height: 21.6rem; |
|
.el-carousel__container { |
|
height: 21.6rem; |
|
} |
|
img { |
|
height: 21.6rem; |
|
} |
|
} |
|
} |
|
|
|
.banner-item { |
|
.banner-name { |
|
font-size: 2.16rem; |
|
} |
|
} |
|
.block { |
|
padding: 3.15rem 0; |
|
.inner { |
|
.b-title { |
|
font-size: 2.25rem; |
|
margin-bottom: 2.25rem; |
|
} |
|
.intro { |
|
margin-bottom: 6.9rem; |
|
} |
|
} |
|
} |
|
.card { |
|
display: flex; |
|
justify-content: center; |
|
li { |
|
position: relative; |
|
display: inline-flex; |
|
justify-content: center; |
|
align-items: center; |
|
flex-direction: column; |
|
flex: 1; |
|
height: 23.67rem; |
|
color: #fff; |
|
&:hover { |
|
.arrow { |
|
opacity: 1; |
|
} |
|
} |
|
.pic { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
} |
|
.texts { |
|
position: relative; |
|
} |
|
h6 { |
|
margin-bottom: 10px; |
|
font-size: 1.57rem; |
|
} |
|
.text { |
|
font-size: 1.08rem; |
|
text-align: center; |
|
} |
|
.arrow { |
|
position: absolute; |
|
bottom: 0; |
|
width: 100%; |
|
height: 7.9rem; |
|
text-align: center; |
|
background: #36404a; |
|
opacity: 0; |
|
transition: 0.3s; |
|
cursor: default; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
} |
|
} |
|
.people { |
|
position: relative; |
|
li { |
|
position: relative; |
|
padding: 4.5rem 3.15rem 4.5rem 2.565rem; |
|
margin-bottom: 100px; |
|
background-color: #fff; |
|
transition: 0.3s; |
|
&:hover { |
|
transform: scale(1.05); |
|
} |
|
&:nth-child(even) { |
|
display: flex; |
|
justify-content: flex-end; |
|
.comma { |
|
left: 70%; |
|
} |
|
.pic { |
|
left: 0; |
|
right: auto; |
|
} |
|
} |
|
} |
|
.comma { |
|
position: absolute; |
|
top: -22px; |
|
left: 57px; |
|
} |
|
.left { |
|
width: 50%; |
|
} |
|
h6 { |
|
font-size: 1.4rem; |
|
color: #333; |
|
} |
|
.des { |
|
margin-top: 20px; |
|
font-size: 1.2rem; |
|
color: #666; |
|
line-height: 32px; |
|
} |
|
.pic { |
|
position: absolute; |
|
top: -60px; |
|
right: 43px; |
|
width: 40%; |
|
height: auto; |
|
} |
|
} |
|
.shows { |
|
position: relative; |
|
li { |
|
position: relative; |
|
display: flex; |
|
align-items: center; |
|
width: 100%; |
|
height: auto; |
|
margin-bottom: 40px; |
|
color: #fff; |
|
&:hover .left { |
|
h6, |
|
.sub, |
|
.des, |
|
.icon { |
|
transform: translateY(20px); |
|
} |
|
} |
|
&:nth-child(even) { |
|
flex-direction: row-reverse; |
|
} |
|
&:nth-child(2) { |
|
.left { |
|
background-color: rgba(47, 79, 23, 0.65); |
|
} |
|
} |
|
&:nth-child(3) { |
|
.left { |
|
width: 43%; |
|
background-color: rgba(91, 58, 35, 0.65); |
|
} |
|
} |
|
} |
|
.left { |
|
position: relative; |
|
z-index: 1; |
|
width: 43.333%; |
|
height: 100%; |
|
padding: 138px 30px 130px 103px; |
|
background-color: rgba(54, 54, 54, 0.65); |
|
} |
|
.pic { |
|
position: absolute; |
|
top: 0; |
|
right: 0; |
|
width: 100%; |
|
height: 100%; |
|
} |
|
h6 { |
|
font-size: 2.07rem; |
|
transition: 0.3s; |
|
} |
|
.sub { |
|
margin: 20px 0 20px 0; |
|
font-size: 1.35rem; |
|
transition: 0.3s; |
|
} |
|
.des { |
|
margin-bottom: 40px; |
|
font-size: 1.08rem; |
|
transition: 0.3s; |
|
} |
|
.icon { |
|
transition: 0.3s; |
|
} |
|
} |
|
</style> |