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.
127 lines
3.1 KiB
127 lines
3.1 KiB
<template> |
|
<div class="wrap"> |
|
<div class="actions"> |
|
<p class="page-name">页面设置/NEWS&EVENTS-PRESS ROOM</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"> |
|
<div class="inner c-wrap"> |
|
<ul class="list"> |
|
<template v-for="(item, i) in modules[1].list"> |
|
<li v-if="item.isEnable" :key="i"> |
|
<img class="pic" :src="item.pic" alt=""> |
|
<div class="texts"> |
|
<h6>{{ item.title }}</h6> |
|
<p class="sub">{{ item.subTitle }}</p> |
|
<div class="des">{{ item.des }}</div> |
|
<img src="@/assets/images/arrow.png" alt=""> |
|
</div> |
|
</li> |
|
</template> |
|
</ul> |
|
<div class="cover" style="width: calc(100% + 60px);" @click="toSet(1)">点击更改图片、标题概述与链接</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.newsPress |
|
} |
|
}, |
|
mounted() { |
|
this.$store.commit('user/setCrumbs', [ |
|
{ |
|
name: '站点管理', |
|
route: '/site' |
|
}, |
|
{ |
|
name: '内容管理', |
|
route: '/column' |
|
}, |
|
{ |
|
name: '栏目管理', |
|
route: '/column' |
|
}, |
|
{ |
|
name: 'NEWS&EVENTS-PRESS ROOM' |
|
} |
|
]) |
|
}, |
|
methods: { |
|
|
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
@import "../../../styles/page/page.scss"; |
|
.list { |
|
li { |
|
position: relative; |
|
&:nth-child(even) { |
|
text-align: right; |
|
.texts { |
|
left: 0; |
|
text-align: left; |
|
} |
|
} |
|
} |
|
.pic { |
|
width: 650px; |
|
height: 730px; |
|
} |
|
.texts { |
|
position: absolute; |
|
top: 120px; |
|
left: 610px; |
|
width: 850px; |
|
height: 440px; |
|
padding: 60px 30px 30px 100px; |
|
background: rgba(247, 247, 247, .72); |
|
} |
|
h6 { |
|
font-size: 40px; |
|
color: #3C3C3C; |
|
} |
|
.sub { |
|
margin: 20px 0; |
|
font-size: 24px; |
|
color: #1C1C1C; |
|
line-height: 33px; |
|
} |
|
.des { |
|
margin-bottom: 20px; |
|
font-size: 20px; |
|
color: #3C3C3C; |
|
line-height: 32px; |
|
} |
|
} |
|
</style> |