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.
221 lines
5.5 KiB
221 lines
5.5 KiB
<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 history gray"> |
|
<div class="inner"> |
|
<div class="c-wrap"> |
|
<h2 class="wow fadeInLeft" |
|
v-html="modules[1].form.title"></h2> |
|
<p class="en">{{ modules[1].form.des }}</p> |
|
<div class="cover" |
|
@click="toSet(1)">点击更改标题与概述</div> |
|
</div> |
|
<div class="texts wow fadeInDown" |
|
data-wow-delay="0.5s"> |
|
<div class="left c-wrap"> |
|
<h6>{{ modules[2].form.title }}</h6> |
|
<div class="line"></div> |
|
<div class="des" |
|
v-html="modules[2].form.des"></div> |
|
<div class="cover" |
|
@click="toSet(2)">点击更改标题与概述</div> |
|
</div> |
|
<img class="bg" |
|
src="https://huorantech.com/images/device/10.png" |
|
alt=""> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="block intro"> |
|
<div class="inner"> |
|
<div class="left c-wrap"> |
|
<div class="title1" |
|
v-html="modules[3].form.title"></div> |
|
<img :src="modules[3].form.pic" |
|
alt=""> |
|
<div class="cover" |
|
@click="toSet(3)">点击更改标题与图片</div> |
|
</div> |
|
<div class="right c-wrap"> |
|
<div class="title2" |
|
v-html="modules[4].form.title"></div> |
|
<img :src="modules[4].form.pic" |
|
alt=""> |
|
<div class="cover" |
|
@click="toSet(4)">点击更改标题与图片</div> |
|
</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.deviceIntroLinear |
|
} |
|
}, |
|
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'; |
|
.history { |
|
.inner { |
|
width: 90%; |
|
max-width: 1504px; |
|
} |
|
h2 { |
|
position: relative; |
|
font-size: 48px; |
|
font-family: PingFangSC-Semibold, PingFang SC; |
|
font-weight: 600; |
|
color: #1c1c1c; |
|
} |
|
.en { |
|
margin: -35px 0 40px; |
|
font-size: 48px; |
|
font-family: PingFangSC-Light, PingFang SC; |
|
font-weight: 300; |
|
color: #e3e3e3; |
|
} |
|
.texts { |
|
display: flex; |
|
justify-content: space-between; |
|
padding: 82px 0 30px 38px; |
|
margin-top: 20px; |
|
background: #1583ff; |
|
border-radius: 65px 100px 0px 0px; |
|
transition: 0.3s; |
|
&:hover { |
|
transform: scale(1.05); |
|
} |
|
} |
|
.left { |
|
width: 50%; |
|
} |
|
h6 { |
|
font-size: 28px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
font-weight: 500; |
|
color: #ffffff; |
|
} |
|
.line { |
|
width: 214px; |
|
height: 5px; |
|
margin: 54px 0 44px; |
|
background: #ffffff; |
|
opacity: 0.52; |
|
} |
|
.des { |
|
font-size: 22px; |
|
font-family: PingFangSC-Regular, PingFang SC; |
|
font-weight: 400; |
|
color: #ffffff; |
|
line-height: 44px; |
|
overflow: visible; |
|
} |
|
.bg { |
|
width: 50%; |
|
margin: -142px -50px 0 0; |
|
border-top-left-radius: 30px; |
|
} |
|
} |
|
.intro { |
|
.inner { |
|
display: flex; |
|
width: 90%; |
|
max-width: 1504px; |
|
} |
|
.left { |
|
width: 30%; |
|
} |
|
.right { |
|
width: 68%; |
|
margin-left: 2%; |
|
} |
|
.title1 { |
|
margin-bottom: 0.93rem; |
|
font-size: 0.88rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
font-weight: 500; |
|
color: #2a2a2a; |
|
} |
|
|
|
.title2 { |
|
padding-left: 0.93rem; |
|
margin-bottom: 0.93rem; |
|
font-size: 0.88rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
font-weight: 500; |
|
color: #2a2a2a; |
|
border-left: 4px solid #1583ff; |
|
} |
|
img { |
|
width: 100%; |
|
height: 85%; |
|
} |
|
} |
|
</style> |