parent
fffb3a824c
commit
5a1cc031d7
7 changed files with 1118 additions and 157 deletions
@ -0,0 +1,163 @@ |
||||
<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"> |
||||
<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> |
||||
</div> |
||||
</div> |
||||
<div class="cover" |
||||
@click="toSet(0)">点击更换banner与链接</div> |
||||
</div> |
||||
|
||||
<div class="block"> |
||||
<div class="inner"> |
||||
<div class="contact"> |
||||
<div class="fields"> |
||||
<h6>Contact us</h6> |
||||
<p class="text">发圣诞节快乐副驾驶打卡了分速度快了父级圣诞快乐</p> |
||||
<p class="text">发圣诞节快乐副驾驶打卡了分速度快了父级圣诞快乐</p> |
||||
<p class="text">发圣诞节快乐副驾驶打卡了分速度快了父级圣诞快乐</p> |
||||
</div> |
||||
<img src="http://10.10.11.7/images/contactUs/2.png" |
||||
alt="" |
||||
class="pic"> |
||||
<el-table :data="list" |
||||
class="patent-table" |
||||
ref="table" |
||||
stripe |
||||
header-align="center"> |
||||
<el-table-column prop="title" |
||||
label="部门" |
||||
align="center" |
||||
min-width="250"></el-table-column> |
||||
<el-table-column prop="publishingHouse" |
||||
label="联系人" |
||||
align="center" |
||||
min-width="100"></el-table-column> |
||||
<el-table-column prop="writersAndEditors" |
||||
label="电话" |
||||
align="center" |
||||
min-width="150"></el-table-column> |
||||
<el-table-column prop="publicationYear" |
||||
label="邮箱" |
||||
align="center" |
||||
min-width="150"></el-table-column> |
||||
</el-table> |
||||
</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.contactUs |
||||
} |
||||
}, |
||||
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'; |
||||
|
||||
.single-banner { |
||||
.banner-img { |
||||
height: 21.6rem; |
||||
} |
||||
.texts { |
||||
h6 { |
||||
font-size: 2.16rem; |
||||
margin-bottom: 0.95rem; |
||||
} |
||||
.banner-des { |
||||
font-size: 0.96rem; |
||||
} |
||||
} |
||||
} |
||||
.block { |
||||
padding: 2rem 0; |
||||
background: url(http://10.10.11.7/images/contactUs/3.png) 0 130px no-repeat, |
||||
url(http://10.10.11.7/images/contactUs/4.png) bottom right no-repeat; |
||||
background-color: #f7f8fa; |
||||
} |
||||
.inner { |
||||
.contact { |
||||
padding: 3rem 6rem; |
||||
background-color: #fff; |
||||
} |
||||
.fields { |
||||
position: relative; |
||||
padding: 2rem; |
||||
border: 4px solid #f9f9f9; |
||||
h6 { |
||||
position: absolute; |
||||
top: -16px; |
||||
left: 60px; |
||||
font-size: 1.1rem; |
||||
font-family: PingFangSC-Medium, PingFang SC; |
||||
color: #333; |
||||
background-color: #fff; |
||||
} |
||||
.text { |
||||
font-size: 1rem; |
||||
color: #333; |
||||
line-height: 1.6; |
||||
} |
||||
} |
||||
.pic { |
||||
width: 100%; |
||||
margin: 2rem 0 1.5rem; |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,146 @@ |
||||
<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"> |
||||
<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> |
||||
</div> |
||||
</div> |
||||
<div class="cover" |
||||
@click="toSet(0)">点击更换banner与链接</div> |
||||
</div> |
||||
|
||||
<div class="block"> |
||||
<div class="inner"> |
||||
<div class="c-wrap"> |
||||
<img :src="modules[1].form.pic" |
||||
alt="" |
||||
class="pic"> |
||||
<div class="texts"> |
||||
<h6>{{ modules[1].form.title }}</h6> |
||||
<p class="en">{{ modules[1].form.subTitle }}</p> |
||||
<div class="text" |
||||
v-html="modules[1].form.des"></div> |
||||
</div> |
||||
<div class="cover" |
||||
@click="toSet(1)">点击更换图片、标题、小标题与概述</div> |
||||
</div> |
||||
</div> |
||||
<div class="sign c-wrap"> |
||||
签名: |
||||
<img :src="modules[2].form.pic" |
||||
alt=""> |
||||
<div class="cover" |
||||
@click="toSet(2)">点击更换签名</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.speech |
||||
} |
||||
}, |
||||
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'; |
||||
.block { |
||||
background: url(http://10.10.11.7/images/speech/2.png) no-repeat; |
||||
} |
||||
.inner { |
||||
display: flex; |
||||
align-items: flex-start; |
||||
.pic { |
||||
max-width: 480px; |
||||
margin-top: 2rem; |
||||
} |
||||
.texts { |
||||
margin-left: 113px; |
||||
} |
||||
h6 { |
||||
position: relative; |
||||
font-size: 2rem; |
||||
font-family: PingFangSC-Medium, PingFang SC; |
||||
font-weight: 600; |
||||
color: #333; |
||||
} |
||||
.en { |
||||
margin: -25px 0 40px; |
||||
font-size: 2.2rem; |
||||
font-family: PingFangSC-Semibold, PingFang SC; |
||||
font-weight: 600; |
||||
color: rgba(216, 216, 216, 0.34); |
||||
} |
||||
.text { |
||||
font-size: 1rem; |
||||
color: #333; |
||||
line-height: 1.6; |
||||
} |
||||
} |
||||
.sign { |
||||
width: 1400px; |
||||
min-height: 150px; |
||||
margin: 20px auto 0; |
||||
text-align: right; |
||||
img { |
||||
max-width: 150px; |
||||
} |
||||
.cover { |
||||
left: auto; |
||||
width: 300px; |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,195 @@ |
||||
<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"> |
||||
<div class="single-banner single-banner-overview"> |
||||
<img class="banner-img" |
||||
:src="modules[0].form.pic" |
||||
alt=""> |
||||
<div class="texts"> |
||||
<h6 class="banner-title">{{ modules[0].form.title }}</h6> |
||||
</div> |
||||
</div> |
||||
<div class="cover" |
||||
@click="toSet(0)">点击更换banner与链接</div> |
||||
</div> |
||||
|
||||
<div class="content"> |
||||
<div class="article"> |
||||
<div class="left"> |
||||
<div class="c-wrap"> |
||||
<h6 class="talent-title">{{ modules[1].form.title }}</h6> |
||||
<div class="talent-text" |
||||
v-html="modules[1].form.des"></div> |
||||
<div class="cover" |
||||
@click="toSet(1)">点击更换标题与概述</div> |
||||
</div> |
||||
<ul class="people"> |
||||
<li> |
||||
<img class="pic" |
||||
:src="modules[2].form.pic" |
||||
alt=""> |
||||
<div class="texts"> |
||||
<h6>{{ modules[2].form.title }}</h6> |
||||
<div class="line"></div> |
||||
<div class="text" |
||||
v-html="modules[2].form.des"></div> |
||||
<img src="@/assets/images/arrow.png" |
||||
alt=""> |
||||
</div> |
||||
<div class="cover" |
||||
@click="toSet(2)">点击更换图片、标题、概述与链接</div> |
||||
</li> |
||||
<li> |
||||
<img class="pic" |
||||
:src="modules[3].form.pic" |
||||
alt=""> |
||||
<div class="texts"> |
||||
<h6>{{ modules[3].form.title }}</h6> |
||||
<div class="line"></div> |
||||
<div class="text" |
||||
v-html="modules[3].form.des"></div> |
||||
<img src="@/assets/images/arrow.png" |
||||
alt=""> |
||||
</div> |
||||
<div class="cover" |
||||
@click="toSet(3)">点击更换图片、标题、概述与链接</div> |
||||
</li> |
||||
</ul> |
||||
</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.talentCentre |
||||
} |
||||
}, |
||||
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'; |
||||
.content { |
||||
margin-top: 20px; |
||||
background-color: #fff; |
||||
} |
||||
.article { |
||||
display: flex; |
||||
justify-content: center; |
||||
.left { |
||||
width: 80%; |
||||
.talent-title { |
||||
padding-bottom: 10px; |
||||
font-size: 1.2rem; |
||||
color: #666; |
||||
border-bottom: 1px solid #eaeef2; |
||||
} |
||||
.talent-text { |
||||
margin: 20px 0; |
||||
font-size: 1.1rem; |
||||
color: #333; |
||||
line-height: 28px; |
||||
p { |
||||
margin-bottom: 20px; |
||||
} |
||||
} |
||||
} |
||||
.people { |
||||
margin-top: 4rem; |
||||
li { |
||||
position: relative; |
||||
display: flex; |
||||
align-items: center; |
||||
margin-bottom: 2rem; |
||||
&:nth-child(even) { |
||||
flex-direction: row-reverse; |
||||
.texts { |
||||
padding: 75px 83px 75px 40px; |
||||
margin: 0 -50px 0 0; |
||||
} |
||||
} |
||||
} |
||||
.pic { |
||||
width: 430px; |
||||
height: 430px; |
||||
} |
||||
.texts { |
||||
position: relative; |
||||
width: 530px; |
||||
height: 330px; |
||||
padding: 75px 41px 75px 83px; |
||||
margin-left: -50px; |
||||
background-color: rgba(247, 247, 247, 0.72); |
||||
} |
||||
h6 { |
||||
font-size: 1.2rem; |
||||
|
||||
font-family: PingFangSC-Semibold, PingFang SC; |
||||
font-weight: 600; |
||||
color: #333; |
||||
} |
||||
.line { |
||||
width: 93px; |
||||
height: 1px; |
||||
margin: 1rem 0; |
||||
background: #d8d8d8; |
||||
} |
||||
.text { |
||||
font-size: 1rem; |
||||
|
||||
font-family: PingFangSC-Regular, PingFang SC; |
||||
color: #666; |
||||
line-height: 1.6; |
||||
} |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue