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.
312 lines
7.9 KiB
312 lines
7.9 KiB
<template> |
|
<div class="wrap"> |
|
<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> |
|
</div> |
|
</div> |
|
|
|
<div class="block about gray"> |
|
<div class="inner"> |
|
<img :src="modules[1].form.pic" alt="" class="pic" /> |
|
<div class="texts"> |
|
<h6>{{ modules[2].form.title }}</h6> |
|
<div class="des" v-html="modules[2].form.des"></div> |
|
<h6>{{ modules[3].form.title }}</h6> |
|
<div class="des" v-html="modules[3].form.des"></div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="block fac"> |
|
<div class="inner"> |
|
<h2 class="b-title wow fadeInUp">{{ modules[4].form.title }}</h2> |
|
<p class="intro wow fadeInUp" data-wow-delay="0.5s">{{ modules[4].form.des }}</p> |
|
<ul class="card"> |
|
<li> |
|
<img :src="modules[5].form.pic" alt="" class="pic" /> |
|
<div class="texts"> |
|
<h6>{{ modules[5].form.title }}</h6> |
|
<div class="text" v-html="modules[5].form.des"></div> |
|
<img src="@/assets/images/arrow.png" alt="" class="arrow"> |
|
</div> |
|
</li> |
|
<li> |
|
<img :src="modules[6].form.pic" alt="" class="pic" /> |
|
<div class="texts"> |
|
<h6>{{ modules[6].form.title }}</h6> |
|
<div class="text" v-html="modules[6].form.des"></div> |
|
<img src="@/assets/images/arrow.png" alt="" class="arrow"> |
|
</div> |
|
</li> |
|
</ul> |
|
<ul class="l-card"> |
|
<li> |
|
<img :src="modules[7].form.pic" alt="" class="pic" /> |
|
<div class="texts"> |
|
<h6>{{ modules[7].form.title }}</h6> |
|
<div class="text" v-html="modules[7].form.des"></div> |
|
</div> |
|
</li> |
|
<li> |
|
<img :src="modules[8].form.pic" alt="" class="pic" /> |
|
<div class="texts"> |
|
<h6>{{ modules[8].form.title }}</h6> |
|
<div class="text" v-html="modules[8].form.des"></div> |
|
</div> |
|
</li> |
|
<li> |
|
<img :src="modules[9].form.pic" alt="" class="pic" /> |
|
<div class="texts"> |
|
<h6>{{ modules[9].form.title }}</h6> |
|
<div class="text" v-html="modules[9].form.des"></div> |
|
</div> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<div class="block scan gray"> |
|
<h2 class="b-title wow fadeInUp">{{ modules[10].form.title }}</h2> |
|
<p class="intro wow fadeInUp" data-wow-delay="0.5s">{{ modules[10].form.des }}</p> |
|
<div class="scan-inner"> |
|
<div class="left"> |
|
<div class="line" v-for="(item, i) in modules[11].list" :key="i"> |
|
<p class="text">{{ item.title }}</p> |
|
</div> |
|
<ul class="total"> |
|
<li> |
|
<p class="num">{{ modules[12].form.title }}</p> |
|
<p class="text">{{ modules[12].form.des }}</p> |
|
</li> |
|
<li> |
|
<p class="num">{{ modules[13].form.title }}</p> |
|
<p class="text">{{ modules[13].form.des }}</p> |
|
</li> |
|
<li> |
|
<p class="num">{{ modules[14].form.title }}</p> |
|
<p class="text">{{ modules[14].form.des }}</p> |
|
</li> |
|
</ul> |
|
</div> |
|
<img :src="modules[15].form.pic" alt="" class="pic" /> |
|
</div> |
|
</div> |
|
</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"; |
|
.about { |
|
padding-top: 0; |
|
.inner { |
|
position: relative; |
|
display: flex; |
|
padding: 20px; |
|
margin-top: -50px; |
|
background-color: #fff; |
|
} |
|
.pic { |
|
width: 40%; |
|
height: 330px; |
|
margin-right: 30px; |
|
} |
|
h6 { |
|
font-size: 1.2rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
color: #333; |
|
&:before { |
|
content: ''; |
|
display: block; |
|
width: 28px; |
|
height: 4px; |
|
margin-bottom: 12px; |
|
background: #0280F1; |
|
} |
|
} |
|
.des { |
|
margin: 20px 0; |
|
font-size: 1rem; |
|
color: #666; |
|
line-height: 2; |
|
} |
|
} |
|
.fac { |
|
.card { |
|
display: flex; |
|
li { |
|
width: calc((100% - 20px) / 2); |
|
color: #333; |
|
background-color: #FCFBFB; |
|
&:first-child { |
|
margin-right: 20px; |
|
} |
|
} |
|
.pic { |
|
width: 100%; |
|
height: 350px; |
|
} |
|
.texts { |
|
padding: 20px; |
|
} |
|
h6 { |
|
margin-bottom: 10px; |
|
font-size: 1.2rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
} |
|
.text { |
|
font-size: 1rem; |
|
} |
|
} |
|
.l-card { |
|
display: flex; |
|
margin-top: 20px; |
|
li { |
|
position: relative; |
|
width: calc((100% - 40px) / 3); |
|
height: 380px; |
|
margin-right: 20px; |
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
.pic { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
.texts { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
padding: 140px 30px 0; |
|
color: #fff; |
|
background-color: rgba(0, 0, 0, .5); |
|
} |
|
h6 { |
|
margin-bottom: 15px; |
|
font-size: 2rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
} |
|
.text { |
|
font-size: 1rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
line-height: 2; |
|
@include mul-ellipsis(4); |
|
} |
|
} |
|
} |
|
.scan { |
|
.scan-inner { |
|
display: flex; |
|
padding-left: 20%; |
|
} |
|
.left { |
|
width: 30%; |
|
margin-right: 80px; |
|
} |
|
.line { |
|
display: flex; |
|
align-items: center; |
|
margin-bottom: 30px; |
|
&:before { |
|
content: ''; |
|
min-width: 50px; |
|
width: 50px; |
|
height: 50px; |
|
margin-right: 20px; |
|
background: url(http://10.10.11.7/images/overview/7.png) 0 0/100% 100% no-repeat; |
|
} |
|
&:nth-child(2):before { |
|
background-image: url(http://10.10.11.7/images/overview/8.png); |
|
} |
|
&:nth-child(3):before { |
|
background-image: url(http://10.10.11.7/images/overview/9.png); |
|
} |
|
&:nth-child(4):before { |
|
background-image: url(http://10.10.11.7/images/overview/10.png); |
|
} |
|
&:nth-child(5):before { |
|
background-image: url(http://10.10.11.7/images/overview/11.png); |
|
} |
|
&:nth-child(6):before { |
|
background-image: url(http://10.10.11.7/images/overview/12.png); |
|
} |
|
&:nth-child(7):before { |
|
background-image: url(http://10.10.11.7/images/overview/13.png); |
|
} |
|
.text { |
|
font-size: 1rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
color: #333; |
|
line-height: 2; |
|
@include mul-ellipsis(2); |
|
} |
|
} |
|
.total { |
|
display: flex; |
|
justify-content: space-between; |
|
margin-top: 50px; |
|
.num { |
|
margin-bottom: 10px; |
|
font-size: 2rem; |
|
font-family: ToppanBunkyuMidashiMinchoStdN-ExtraBold, ToppanBunkyuMidashiMinchoStdN; |
|
font-weight: 800; |
|
color: #1583FF; |
|
} |
|
.text { |
|
font-size: 1rem; |
|
color: #333; |
|
} |
|
} |
|
.pic { |
|
width: 70%; |
|
height: 700px; |
|
} |
|
} |
|
</style>
|
|
|