粒子研究院前台前端
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.

254 lines
6.2 KiB

2 years ago
<template>
<div class="wrap">
2 years ago
<div class="single-banner">
<img class="banner-img" :src="modules[0].form.pic" alt="">
<div class="texts">
<h6 class="banner-title">{{ modules[0].form.title }}</h6>
<p class="banner-des">{{ modules[0].form.des }}</p>
</div>
</div>
2 years ago
<div class="block talent">
<div class="inner">
<div class="item wow bounceInLeft" data-wow-delay="0.5s" :class="{'cursor-pointer': isLink(modules[1].form.link.linkName)}" @click="openLink(modules[1].form)">
<div class="img-wrap">
<img class="pic" :src="modules[1].form.pic" alt="">
</div>
2 years ago
<div class="texts">
2 years ago
<h6>{{ modules[1].form.title }}</h6>
<div class="des">{{ modules[1].form.des }}</div>
2 years ago
</div>
</div>
<div class="item wow bounceInRight" data-wow-delay="0.6s" :class="{'cursor-pointer': isLink(modules[2].form.link.linkName)}" @click="openLink(modules[2].form)">
<div class="img-wrap">
<img class="pic" :src="modules[2].form.pic" alt="">
</div>
2 years ago
<div class="texts">
2 years ago
<h6>{{ modules[2].form.title }}</h6>
<div class="des">{{ modules[2].form.des }}</div>
2 years ago
</div>
</div>
</div>
</div>
<div class="style">
<h6 class="wow fadeInUp">{{ modules[3].form.title }}</h6>
2 years ago
<el-carousel :interval="4000" type="card" height="510px">
<template v-for="(item, i) in modules[4].list">
<el-carousel-item v-if="item.isEnable" :key="i">
<div class="item" @click="openLink(item)">
<img :src="item.pic" alt="">
2 years ago
<p class="text">{{ item.title }}</p>
2 years ago
</div>
</el-carousel-item>
</template>
</el-carousel>
2 years ago
</div>
<div class="block intro">
<div class="inner">
<div class="item wow fadeInDown" data-wow-delay="0.1s">
<div class="img-wrap">
<img class="pic" :src="modules[5].form.pic" alt="">
</div>
2 years ago
<div class="texts">
2 years ago
<p class="type">{{ modules[5].form.subTitle }}</p>
<h6>{{ modules[5].form.title }}</h6>
<div class="des">{{ modules[5].form.des }}</div>
2 years ago
<el-button v-if="isLink(modules[5].form.link.linkName)" type="primary" @click="openLink(modules[5].form)">查看更多</el-button>
2 years ago
</div>
</div>
<div class="item wow fadeInDown" data-wow-delay="0.3s">
<div class="img-wrap">
<img class="pic" :src="modules[6].form.pic" alt="">
</div>
2 years ago
<div class="texts">
2 years ago
<p class="type">{{ modules[6].form.subTitle }}</p>
<h6>{{ modules[6].form.title }}</h6>
<div class="des">{{ modules[6].form.des }}</div>
2 years ago
<el-button v-if="isLink(modules[6].form.link.linkName)" type="primary" @click="openLink(modules[6].form)">查看更多</el-button>
2 years ago
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import mixins from '@/mixins/page'
import Setting from '@/setting'
import Util from '@/libs/util'
import Breadcrumb from '@/components/breadcrumb'
import WOW from 'wow.js'
export default {
mixins: [mixins],
data() {
return {
routes: []
}
},
components: {
Breadcrumb
},
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 {
background: #F8F9FB;
}
.talent {
.inner {
width: 100%;
max-width: 1504px;
2 years ago
}
.item {
display: flex;
padding: 42px;
margin-bottom: 36px;
color: #333;
2 years ago
background: #fff;
transition: .5s;
2 years ago
&:nth-child(even) {
2 years ago
justify-content: space-between;
2 years ago
flex-direction: row-reverse;
.texts {
padding-left: 0;
}
}
&:hover {
color: #fff;
background: #005388;
.pic {
transform: scale(1.1);
}
}
2 years ago
}
.img-wrap {
2 years ago
height: 465px;
overflow: hidden;
}
.pic {
width: 100%;
height: 100%;
transition: .5s;
2 years ago
}
.texts {
width: 707px;
2 years ago
padding: 98px 72px 30px 80px;
}
h6 {
margin-bottom: 24px;
font-size: 2.4rem;
2 years ago
font-family: PingFangSC-Light, PingFang SC;
font-weight: 300;
}
.des {
font-size: 1rem;
2 years ago
line-height: 33px;
2 years ago
-webkit-line-clamp: 8;
2 years ago
}
}
.style {
h6 {
margin-bottom: 59px;
font-size: 2.4rem;
2 years ago
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
text-align: center;
color: #333333;
}
.item {
position: relative;
2 years ago
width: 100%;
height: 510px;
2 years ago
}
img {
width: 100%;
height: 100%;
}
.text {
position: absolute;
2 years ago
bottom: 0;
2 years ago
left: 0;
width: 100%;
padding: 0 30px;
line-height: 3.4rem;
font-size: 1.2rem;
2 years ago
color: #fff;
background: rgba(0,0,0,0.38);
}
}
.intro {
.inner {
width: 100%;
max-width: 1504px;
2 years ago
}
.item {
display: flex;
align-items: center;
margin-bottom: 36px;
color: #333;
2 years ago
background: #fff;
transition: .5s;
2 years ago
&:nth-child(even) {
flex-direction: row-reverse;
}
&:hover {
color: #fff;
background: #465f85;
.pic {
transform: scale(1.1);
}
}
2 years ago
}
.img-wrap {
2 years ago
height: 505px;
overflow: hidden;
}
.pic {
width: 100%;
height: 100%;
transition: .5s;
2 years ago
}
.texts {
width: 45%;
2 years ago
padding: 0 58px;
}
.type {
font-size: 1rem;
2 years ago
}
h6 {
margin: 20px 0;
font-size: 1.6rem;
2 years ago
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
}
.des {
margin-bottom: 30px;
font-size: 0.9rem;
2 years ago
line-height: 30px;
}
}
</style>