After Width: | Height: | Size: 436 KiB |
After Width: | Height: | Size: 266 KiB |
After Width: | Height: | Size: 270 KiB |
After Width: | Height: | Size: 604 KiB |
After Width: | Height: | Size: 219 KiB |
After Width: | Height: | Size: 285 KiB |
After Width: | Height: | Size: 256 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 18 KiB |
@ -0,0 +1,178 @@ |
|||||||
|
<template> |
||||||
|
<div class="wrap"> |
||||||
|
<div class="actions"> |
||||||
|
<p class="page-name">页面设置/装置介绍-实验站</p> |
||||||
|
<div> |
||||||
|
<el-button type="primary" @click="preview">预览</el-button> |
||||||
|
<el-button @click="save(0)">保存为草稿</el-button> |
||||||
|
<el-button type="primary" @click="save(1)">发布</el-button> |
||||||
|
<el-button @click="back">放弃编辑</el-button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="modules"> |
||||||
|
<div class="relative"> |
||||||
|
<el-carousel height="480px" :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"> |
||||||
|
<img width="100%" height="100%" :src="item.pic" alt=""> |
||||||
|
</el-carousel-item> |
||||||
|
</template> |
||||||
|
</el-carousel> |
||||||
|
<div class="cover" @click="toSet(0)">点击更换banner与链接</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="block station"> |
||||||
|
<div class="inner c-wrap"> |
||||||
|
<h6>实验线站</h6> |
||||||
|
<p class="en">EXPERIMENT STATIONS</p> |
||||||
|
<img class="pic" :src="modules[1].form.pic" alt=""> |
||||||
|
<div class="des">{{ modules[1].form.des }}</div> |
||||||
|
<div class="cover" @click="toSet(1)">点击更改图片与概述</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<ul class="list"> |
||||||
|
<li class="item1"> |
||||||
|
<img src="@/assets/images/exp/2.png" alt=""> |
||||||
|
<h6>{{ modules[2].form.title }}</h6> |
||||||
|
<div class="cover" @click="toSet(2)">点击更改标题</div> |
||||||
|
</li> |
||||||
|
<li class="item2"> |
||||||
|
<img src="@/assets/images/exp/3.png" alt=""> |
||||||
|
<h6>{{ modules[3].form.title }}</h6> |
||||||
|
<div class="cover" @click="toSet(3)">点击更改标题</div> |
||||||
|
</li> |
||||||
|
<li class="item3"> |
||||||
|
<img src="@/assets/images/exp/4.png" alt=""> |
||||||
|
<h6>{{ modules[4].form.title }}</h6> |
||||||
|
<div class="cover" @click="toSet(4)">点击更改标题</div> |
||||||
|
</li> |
||||||
|
<li class="item4"> |
||||||
|
<img src="@/assets/images/exp/5.png" alt=""> |
||||||
|
<h6>{{ modules[5].form.title }}</h6> |
||||||
|
<div class="cover" @click="toSet(5)">点击更改标题</div> |
||||||
|
</li> |
||||||
|
<li class="item5"> |
||||||
|
<img src="@/assets/images/exp/6.png" alt=""> |
||||||
|
<h6>{{ modules[6].form.title }}</h6> |
||||||
|
<div class="cover" @click="toSet(6)">点击更改标题</div> |
||||||
|
</li> |
||||||
|
<li class="item6"> |
||||||
|
<img src="@/assets/images/exp/7.png" alt=""> |
||||||
|
<h6>{{ modules[7].form.title }}</h6> |
||||||
|
<div class="cover" @click="toSet(7)">点击更改标题</div> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
|
||||||
|
<Module ref="module" :data.sync="curData" :visible.sync="diaVisible" @moduleSubmit="moduleSubmit" /> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import mixins from '@/mixins/page' |
||||||
|
import Modules from '@/const/modules' |
||||||
|
export default { |
||||||
|
mixins: [mixins], |
||||||
|
data() { |
||||||
|
return { |
||||||
|
modules: Modules.exp |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted() { |
||||||
|
this.$store.commit('user/setCrumbs', [ |
||||||
|
{ |
||||||
|
name: '站点管理', |
||||||
|
route: '/site' |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '内容管理', |
||||||
|
route: '/column' |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '栏目管理', |
||||||
|
route: '/column' |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '装置介绍-实验站' |
||||||
|
} |
||||||
|
]) |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
|
||||||
|
} |
||||||
|
}; |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped> |
||||||
|
@import "../../../styles/page/page.scss"; |
||||||
|
.station { |
||||||
|
.inner { |
||||||
|
width: 1200px; |
||||||
|
} |
||||||
|
h6 { |
||||||
|
position: relative; |
||||||
|
font-size: 48px; |
||||||
|
font-family: PingFangSC-Medium, PingFang SC; |
||||||
|
font-weight: 500; |
||||||
|
color: #333333; |
||||||
|
line-height: 1; |
||||||
|
} |
||||||
|
.en { |
||||||
|
margin-bottom: 20px; |
||||||
|
font-size: 45px; |
||||||
|
font-family: AppleSystemUIFont; |
||||||
|
color: #E4E4E4; |
||||||
|
line-height: 1; |
||||||
|
} |
||||||
|
.pic { |
||||||
|
width: 100%; |
||||||
|
height: 604px; |
||||||
|
} |
||||||
|
.des { |
||||||
|
margin-top: 55px; |
||||||
|
font-size: 18px; |
||||||
|
color: #333; |
||||||
|
line-height: 34px; |
||||||
|
overflow: visible; |
||||||
|
} |
||||||
|
} |
||||||
|
.list { |
||||||
|
display: flex; |
||||||
|
flex-wrap: wrap; |
||||||
|
margin-top: 30px; |
||||||
|
li { |
||||||
|
position: relative; |
||||||
|
height: 542px; |
||||||
|
} |
||||||
|
img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
h6 { |
||||||
|
position: absolute; |
||||||
|
top: 192px; |
||||||
|
left: 60px; |
||||||
|
font-size: 30px; |
||||||
|
font-family: PingFangSC-Medium, PingFang SC; |
||||||
|
font-weight: 500; |
||||||
|
color: #fff; |
||||||
|
} |
||||||
|
.item1, .item2 { |
||||||
|
width: 25%; |
||||||
|
} |
||||||
|
.item3 { |
||||||
|
width: 50%; |
||||||
|
} |
||||||
|
.item4 { |
||||||
|
width: 40%; |
||||||
|
} |
||||||
|
.item5 { |
||||||
|
width: 32%; |
||||||
|
} |
||||||
|
.item6 { |
||||||
|
width: 28%; |
||||||
|
} |
||||||
|
} |
||||||
|
</style> |
@ -0,0 +1,129 @@ |
|||||||
|
<template> |
||||||
|
<div class="wrap"> |
||||||
|
<div class="actions"> |
||||||
|
<p class="page-name">页面设置/概况</p> |
||||||
|
<div> |
||||||
|
<el-button type="primary" @click="preview">预览</el-button> |
||||||
|
<el-button @click="save(0)">保存为草稿</el-button> |
||||||
|
<el-button type="primary" @click="save(1)">发布</el-button> |
||||||
|
<el-button @click="back">放弃编辑</el-button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="modules"> |
||||||
|
<div class="relative"> |
||||||
|
<el-carousel height="480px" :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"> |
||||||
|
<img width="100%" height="100%" :src="item.pic" alt=""> |
||||||
|
</el-carousel-item> |
||||||
|
</template> |
||||||
|
</el-carousel> |
||||||
|
<div class="cover" @click="toSet(0)">点击更换banner与链接</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 v-if="active === 2" class="c-wrap"> |
||||||
|
<video v-if="modules[3].form.video" class="video" ref="video" autoplay controls loop> |
||||||
|
<source :src="modules[3].form.video" type="video/mp4"> |
||||||
|
您的浏览器不支持 video 标签。 |
||||||
|
</video> |
||||||
|
<div class="text">{{ modules[3].form.des }}</div> |
||||||
|
<div class="cover" @click="toSet(3)">点击更换视频与描述</div> |
||||||
|
</div> |
||||||
|
<div v-if="active === 3" class="c-wrap"> |
||||||
|
<div v-html="modules[4].form.des"></div> |
||||||
|
<div class="cover" @click="toSet(4)">点击更换描述</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<Module ref="module" :data.sync="curData" :visible.sync="diaVisible" @moduleSubmit="moduleSubmit" /> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import mixins from '@/mixins/page' |
||||||
|
import Modules from '@/const/modules' |
||||||
|
export default { |
||||||
|
mixins: [mixins], |
||||||
|
data() { |
||||||
|
return { |
||||||
|
modules: Modules.survey, |
||||||
|
active: 2, |
||||||
|
tabs: ['S³FEL介绍', '发展历程', 'S³FEL宣传片', '地理位置', '机构设置'] |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted() { |
||||||
|
this.$store.commit('user/setCrumbs', [ |
||||||
|
{ |
||||||
|
name: '站点管理', |
||||||
|
route: '/site' |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '内容管理', |
||||||
|
route: '/column' |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '栏目管理', |
||||||
|
route: '/column' |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '概况' |
||||||
|
} |
||||||
|
]) |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
// tab回调 |
||||||
|
tabChange(i) { |
||||||
|
this.active = i |
||||||
|
}, |
||||||
|
} |
||||||
|
}; |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped> |
||||||
|
@import "../../../styles/page/page.scss"; |
||||||
|
.wrap { |
||||||
|
background: url(../../../assets/images/survey1.png) (0 559px)/auto no-repeat, |
||||||
|
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: 22px; |
||||||
|
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 { |
||||||
|
width: 1000px; |
||||||
|
padding: 77px 0; |
||||||
|
margin: 0 auto; |
||||||
|
} |
||||||
|
.video { |
||||||
|
width: 100%; |
||||||
|
margin-bottom: 55px; |
||||||
|
} |
||||||
|
.text { |
||||||
|
font-size: 18px; |
||||||
|
color: #020202; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
</style> |