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.
195 lines
4.5 KiB
195 lines
4.5 KiB
<template> |
|
<div class="wrap"> |
|
<div class="actions"> |
|
<p class="page-name">页面设置/{{ columnName }}</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"> |
|
<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> |
|
<div class="cover" @click="toSet(0)">点击更换banner与链接</div> |
|
</div> |
|
|
|
<div class="block share"> |
|
<div class="inner c-wrap"> |
|
<div class="left"> |
|
<h6 v-html="modules[1].form.title"></h6> |
|
<p class="en">USERS SHARE</p> |
|
<div class="des" v-html="modules[1].form.des"></div> |
|
</div> |
|
<div class="cover" @click="toSet(1)">点击更换描述</div> |
|
<img class="pic" :src="modules[1].form.pic" alt=""> |
|
<div class="card"> |
|
<p class="title">{{ modules[1].form.subTitle }}</p> |
|
<p class="en-text">{{ modules[1].form.enTitle }}</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="block gray"> |
|
<ul class="group"> |
|
<li> |
|
<img src="https://huorantech.com/images/userSharing/2.png" alt=""> |
|
<h6>{{ modules[2].form.title }}</h6> |
|
<div class="des">{{ modules[2].form.des }}</div> |
|
<div class="cover" @click="toSet(2)">点击更换标题、描述与链接</div> |
|
</li> |
|
<li> |
|
<img src="https://huorantech.com/images/userSharing/3.png" alt=""> |
|
<h6>{{ modules[3].form.title }}</h6> |
|
<div class="des">{{ modules[3].form.des }}</div> |
|
<div class="cover" @click="toSet(3)">点击更换标题、描述与链接</div> |
|
</li> |
|
<li> |
|
<img src="https://huorantech.com/images/userSharing/4.png" alt=""> |
|
<h6>{{ modules[4].form.title }}</h6> |
|
<div class="des">{{ modules[4].form.des }}</div> |
|
<div class="cover" @click="toSet(4)">点击更换标题、描述与链接</div> |
|
</li> |
|
</ul> |
|
</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: _.cloneDeep(Modules.userSharing) |
|
} |
|
}, |
|
mounted () { }, |
|
methods: { |
|
|
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
@import '../../../styles/page/page.scss'; |
|
|
|
.share { |
|
position: relative; |
|
|
|
.inner { |
|
display: flex; |
|
width: 1476px; |
|
} |
|
|
|
.left { |
|
width: 509px; |
|
} |
|
|
|
h6 { |
|
position: relative; |
|
font-size: 48px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
font-weight: 500; |
|
color: #333333; |
|
} |
|
|
|
.en { |
|
margin-top: -35px; |
|
font-size: 45px; |
|
font-family: AppleSystemUIFont; |
|
color: #e4e4e4; |
|
} |
|
|
|
.des { |
|
margin-top: 25px; |
|
font-size: 18px; |
|
color: #333; |
|
line-height: 37px; |
|
overflow: visible; |
|
} |
|
|
|
.pic { |
|
width: 944px; |
|
height: 568px; |
|
border-top-left-radius: 20px; |
|
} |
|
|
|
.card { |
|
position: absolute; |
|
bottom: 29px; |
|
left: 0; |
|
width: 1068px; |
|
height: 145px; |
|
padding: 20px 0 0 11%; |
|
background: #7bacc4; |
|
border-radius: 0px 100px 0px 0px; |
|
opacity: 0.88; |
|
} |
|
|
|
.title { |
|
margin-bottom: 10px; |
|
font-size: 40px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
font-weight: 500; |
|
color: #fff; |
|
} |
|
|
|
.en-text { |
|
font-size: 28px; |
|
font-family: AppleSystemUIFont; |
|
color: #fff; |
|
letter-spacing: 2px; |
|
} |
|
} |
|
|
|
.group { |
|
display: flex; |
|
justify-content: center; |
|
|
|
li { |
|
position: relative; |
|
width: 420px; |
|
height: 390px; |
|
padding: 195px 0 0 32px; |
|
margin-right: 20px; |
|
color: #fff; |
|
} |
|
|
|
img { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
} |
|
|
|
h6 { |
|
position: relative; |
|
font-size: 36px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
font-weight: 500; |
|
} |
|
|
|
.des { |
|
position: relative; |
|
margin-top: 16px; |
|
font-size: 18px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
font-weight: 500; |
|
line-height: 31px; |
|
} |
|
} |
|
</style> |