parent
b4db275284
commit
4ac6a899f8
7 changed files with 222 additions and 87 deletions
@ -0,0 +1,34 @@ |
||||
export default { |
||||
data() { |
||||
return { |
||||
tabs: ['S³FEL介绍', '发展历程', 'S³FEL宣传片', '地理位置', '机构设置'], |
||||
} |
||||
}, |
||||
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 => {}) |
||||
}, |
||||
// tab回调
|
||||
tabChange(i) { |
||||
this.active = i |
||||
// 跳转到固定的长页,这里的id不能变
|
||||
let path = '/overviewIntro?id=220' |
||||
if (i == 1) path = '/overviewDevHistory?id=214' |
||||
if (i == 2) path = '/overviewTrailer?id=215' |
||||
if (i == 3) path = '/overviewLocation?id=216' |
||||
if (i == 4) path = '/overviewSetup?id=217' |
||||
this.$router.push(path + '&siteId=3') |
||||
}, |
||||
} |
||||
}; |
@ -0,0 +1,160 @@ |
||||
<template> |
||||
<div class="wrap"> |
||||
<div class="single-banner single-banner-overview"> |
||||
<img class="banner-img" :src="modules[0].form.pic" alt=""> |
||||
<div class="texts"> |
||||
<h6 class="banner-title">{{ modules[0].form.title }}</h6> |
||||
</div> |
||||
</div> |
||||
|
||||
<ul class="tabs wow fadeInLeft"> |
||||
<template v-for="(item, i) in tabs"> |
||||
<li :class="{active: i == active}" :key="i" @click="tabChange(i)">{{ item }}</li> |
||||
</template> |
||||
</ul> |
||||
|
||||
<div class="tab-content"> |
||||
<div class="intro"> |
||||
<img class="pic" src="http://10.10.11.7/images/overviewIntro/1.png" alt=""> |
||||
<div class="right"> |
||||
<h6> |
||||
{{ modules[1].form.title }} |
||||
<img class="title-bg" src="http://10.10.11.7/images/overviewIntro/2.png" alt=""> |
||||
</h6> |
||||
<div class="text" v-html="modules[1].form.des"></div> |
||||
</div> |
||||
</div> |
||||
<div class="intro-bg"> |
||||
<div class="mask"></div> |
||||
<div class="texts"> |
||||
<h6>henzhen Superconducting Soft X-Ray Fre Electron Laser</h6> |
||||
<div class="des">探索认知微观世界和物质结构的”高速摄像机”</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import mixins from '@/mixins/page' |
||||
import overview from '@/mixins/overview' |
||||
import WOW from 'wow.js' |
||||
export default { |
||||
mixins: [mixins, overview], |
||||
data() { |
||||
return { |
||||
active: 0, |
||||
} |
||||
}, |
||||
mounted() { |
||||
new WOW().init() |
||||
}, |
||||
methods: { |
||||
|
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
@import url(../../plugins/wow/animate.css); |
||||
@import "../../styles/page/page.scss"; |
||||
.wrap { |
||||
background: url(../../assets/images/survey2.png) (bottom right)/auto no-repeat; |
||||
} |
||||
.tabs { |
||||
display: flex; |
||||
justify-content: center; |
||||
box-shadow: 0px 2px 10px 0px rgba(223,223,223,0.28); |
||||
li { |
||||
padding: 25px 19px; |
||||
margin: 0 10px; |
||||
font-size: 1.1rem; |
||||
color: #333; |
||||
border-bottom: 4px solid transparent; |
||||
text-shadow: 0px 2px 14px rgba(167,167,167,0.26); |
||||
cursor: pointer; |
||||
&.active { |
||||
color: #1583FF; |
||||
border-bottom-color: #1583FF; |
||||
} |
||||
} |
||||
} |
||||
.tab-content { |
||||
padding-top: 150px; |
||||
.intro { |
||||
display: flex; |
||||
margin-bottom: 110px; |
||||
.pic { |
||||
width: 40%; |
||||
margin-right: 50px; |
||||
} |
||||
.right { |
||||
width: 40%; |
||||
} |
||||
h6 { |
||||
position: relative; |
||||
font-size: 1.2rem; |
||||
color: #333; |
||||
} |
||||
.title-bg { |
||||
position: absolute; |
||||
top: -40px; |
||||
left: -20px; |
||||
} |
||||
.text { |
||||
margin-top: 40px; |
||||
font-size: 1rem; |
||||
color: #020202; |
||||
line-height: 2; |
||||
} |
||||
} |
||||
.intro-bg { |
||||
position: relative; |
||||
height: 275px; |
||||
padding-top: 90px; |
||||
color: #fff; |
||||
text-align: center; |
||||
background: url(http://10.10.11.7/images/overviewIntro/3.png) 0 0/100% 100% no-repeat; |
||||
.mask { |
||||
position: absolute; |
||||
top: 0; |
||||
right: 0; |
||||
bottom: 0; |
||||
left: 0; |
||||
content: ''; |
||||
background-color: rgba(0, 0, 0, .3); |
||||
} |
||||
.texts { |
||||
position: relative; |
||||
} |
||||
h6 { |
||||
margin-bottom: 30px; |
||||
font-size: 2rem; |
||||
font-family: ToppanBunkyuMidashiGothicStdN-ExtraBold, ToppanBunkyuMidashiGothicStdN; |
||||
font-weight: 800; |
||||
} |
||||
.des { |
||||
font-size: 1.5rem; |
||||
} |
||||
} |
||||
} |
||||
@media (max-width: 1200px) { |
||||
.tabs { |
||||
overflow: hidden;; |
||||
overflow-x: auto; |
||||
white-space: normal; |
||||
justify-content: normal; |
||||
display: -webkit-box; |
||||
li { |
||||
white-space: normal; |
||||
} |
||||
} |
||||
.tab-content{ |
||||
width: 90%; |
||||
span { |
||||
font-size: 1.35rem; |
||||
} |
||||
} |
||||
|
||||
} |
||||
</style> |
@ -0,0 +1,14 @@ |
||||
import BasicLayout from '@/layouts/home' |
||||
const name = 'overviewIntro' |
||||
export default { |
||||
path: `/${name}`, |
||||
component: BasicLayout, |
||||
children: [ |
||||
{ |
||||
name, |
||||
path: `/${name}`, |
||||
component: () => import(`@/pages/${name}`), |
||||
meta: { title: '' } |
||||
} |
||||
] |
||||
}; |
Loading…
Reference in new issue