粒子研究院后台前端
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.

253 lines
5.9 KiB

2 years ago
<template>
<div class="wrap">
<div class="actions">
<p class="page-name">页面设置/关于IASF-使命愿景价值观</p>
<div>
<el-button type="primary"
@click="preview">预览</el-button>
2 years ago
<el-button @click="save(0)">保存为草稿</el-button>
<el-button type="primary"
@click="save(1)">发布</el-button>
2 years ago
<el-button @click="back">放弃编辑</el-button>
</div>
</div>
2 years ago
<div class="modules">
<div class="relative">
<div class="single-banner">
<img class="banner-img"
:src="modules[0].form.pic"
alt="" />
2 years ago
<div class="texts">
<h6 class="banner-title">{{ modules[0].form.title }}</h6>
</div>
</div>
<div class="cover"
@click="toSet(0)">点击更换banner与链接</div>
2 years ago
</div>
<div class="block">
<div class="inner">
<div class="item">
<img :src="modules[1].form.pic"
alt="" />
2 years ago
<div class="texts">
<h6>{{ modules[1].form.title }}</h6>
<div class="text"
v-html="modules[1].form.des"></div>
2 years ago
</div>
<div class="cover"
style="left: -35px"
@click="toSet(1)">点击更改标题概述与链接</div>
2 years ago
</div>
<div class="item">
<img :src="modules[2].form.pic"
alt="" />
2 years ago
<div class="texts rightText">
<h6>{{ modules[2].form.title }}</h6>
<div class="text"
v-html="modules[2].form.des"></div>
2 years ago
</div>
<div class="cover"
style="right: -35px"
@click="toSet(2)">点击更改标题概述与链接</div>
2 years ago
</div>
</div>
</div>
<div class="block mind gray">
<div class="inner">
<div class="c-wrap">
<h6 class="m-title">{{ modules[3].form.title }}</h6>
<div class="cover"
@click="toSet(3)">点击更换标题</div>
2 years ago
</div>
<ul class="list">
<template v-for="(item, i) in modules[4].list">
<li v-if="item.isEnable"
:key="i">
<img :src="item.pic"
alt=""
class="pic">
2 years ago
<div class="texts">
<h6>{{ item.title }}</h6>
<div class="des"
v-html="item.des"></div>
2 years ago
</div>
</li>
</template>
<div class="cover"
@click="toSet(4)">点击更换图片标题概述与链接</div>
2 years ago
</ul>
</div>
</div>
</div>
<Module ref="module"
:data.sync="curData"
:visible.sync="diaVisible"
@moduleSubmit="moduleSubmit" />
2 years ago
</div>
</template>
<script>
import mixins from '@/mixins/page'
import Modules from '@/const/modules'
export default {
mixins: [mixins],
data () {
2 years ago
return {
modules: Modules.mission
}
},
mounted () {
2 years ago
this.$store.commit('user/setCrumbs', [
{
name: '站点管理',
route: '/site'
},
{
name: '内容管理',
route: '/column'
},
{
name: '栏目管理',
route: '/column'
},
{
name: '关于IASF-使命愿景价值观'
}
])
},
methods: {
2 years ago
}
};
</script>
<style lang="scss" scoped>
@import '../../../styles/page/page.scss';
2 years ago
.inner {
width: 1200px;
2 years ago
}
.item {
position: relative;
margin-bottom: 58px;
img {
width: 100%;
height: 400px;
2 years ago
}
&:nth-child(2) .texts {
left: auto;
right: -36px;
color: #fff;
background: rgba(40, 179, 255, 0.34);
2 years ago
}
.texts {
position: absolute;
top: 79px;
left: -34px;
width: 532px;
padding: 70px 38px;
color: #333;
background: rgba(255, 241, 231, 0.84);
transition: 0.5s;
2 years ago
}
h6 {
margin-bottom: 14px;
font-size: 2rem;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
2 years ago
}
.des {
font-size: 1rem;
2 years ago
}
}
.mind {
.m-title {
margin-bottom: 30px;
font-size: 2.2rem;
text-align: center;
color: #333;
}
.list {
position: relative;
display: flex;
flex-wrap: wrap;
}
li {
display: inline-flex;
align-items: center;
width: calc((100% - 22px) / 2);
margin: 0 22px 22px 0;
background-color: #fff;
&:nth-child(even) {
margin-right: 0;
2 years ago
}
.pic {
width: 250px;
height: 230px;
2 years ago
}
.texts {
width: calc(100% - 250px);
padding: 0 20px;
2 years ago
}
h6 {
margin-bottom: 20px;
font-size: 1.5rem;
color: #272727;
@include ellipsis();
2 years ago
}
.text {
font-size: 1rem;
color: #666;
line-height: 1.5;
2 years ago
}
}
}
@media (max-width: 1200px) {
.inner {
width: 98%;
2 years ago
}
.item {
img {
margin-left: 30px;
2 years ago
}
.rightText {
right: 12px !important;
}
.texts {
width: 85%;
box-sizing: border-box;
left: 12px;
.des {
-webkit-line-clamp: inherit;
}
2 years ago
}
}
}
@media (max-width: 980px) {
.mind {
.list {
flex-direction: column;
2 years ago
}
li {
width: 100%;
2 years ago
}
}
}
@media (max-width: 480px) {
.mind {
li {
.pic {
width: 150px;
height: 130px;
}
.texts {
width: calc(100% - 150px);
}
2 years ago
}
}
}
</style>