parent
d794b179f0
commit
676542f494
11 changed files with 430 additions and 27 deletions
After Width: | Height: | Size: 962 KiB |
After Width: | Height: | Size: 198 KiB |
After Width: | Height: | Size: 187 KiB |
After Width: | Height: | Size: 224 KiB |
@ -0,0 +1,198 @@ |
|||||||
|
<template> |
||||||
|
<div class="wrap"> |
||||||
|
<div class="actions"> |
||||||
|
<p class="page-name">页面设置/RESEARCH</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 share"> |
||||||
|
<div class="inner c-wrap"> |
||||||
|
<div class="left"> |
||||||
|
<h6>用户共享</h6> |
||||||
|
<p class="en">USERS SHARE</p> |
||||||
|
<div class="des">{{ modules[1].form.des }}</div> |
||||||
|
</div> |
||||||
|
<div class="cover" @click="toSet(1)">点击更换描述</div> |
||||||
|
<img class="pic" src="@/assets/images/userSharing/1.png" alt=""> |
||||||
|
<div class="card"> |
||||||
|
<p class="title">高效运行、分类开放</p> |
||||||
|
<p class="en-text">EFFICIENT OPERATION, CLASSIFICATION OPEN</p> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="block gray"> |
||||||
|
<ul class="group"> |
||||||
|
<li> |
||||||
|
<img src="@/assets/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="@/assets/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="@/assets/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: Modules.userSharing |
||||||
|
} |
||||||
|
}, |
||||||
|
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"; |
||||||
|
.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> |
Loading…
Reference in new issue