|
|
@ -1,8 +1,7 @@ |
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<div class="wrap"> |
|
|
|
<div class="wrap"> |
|
|
|
<div class="content"> |
|
|
|
<div class="content"> |
|
|
|
<Breadcrumb ref="breadcrumb" |
|
|
|
<Breadcrumb ref="breadcrumb" :data.sync="routes" /> |
|
|
|
:data.sync="routes" /> |
|
|
|
|
|
|
|
<div class="article"> |
|
|
|
<div class="article"> |
|
|
|
<div class="left"> |
|
|
|
<div class="left"> |
|
|
|
<h2>{{ form.title }}</h2> |
|
|
|
<h2>{{ form.title }}</h2> |
|
|
@ -10,21 +9,26 @@ |
|
|
|
<p class="name">{{ $t('column.author') }}</p> |
|
|
|
<p class="name">{{ $t('column.author') }}</p> |
|
|
|
<p class="val">{{ form.author }}</p> |
|
|
|
<p class="val">{{ form.author }}</p> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
<template v-if="form.source"> |
|
|
|
|
|
|
|
<p class="name">{{ $t('column.source') }}</p> |
|
|
|
|
|
|
|
<p class="val">{{ form.source }}</p> |
|
|
|
|
|
|
|
</template> |
|
|
|
<template v-if="form.quote"> |
|
|
|
<template v-if="form.quote"> |
|
|
|
<p class="name">{{ $t('column.quote') }}</p> |
|
|
|
<p class="name">{{ $t('column.quote') }}</p> |
|
|
|
<p class="val">{{ form.quote }}</p> |
|
|
|
<p class="val">{{ form.quote }}</p> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
<template v-if="form.keyword"> |
|
|
|
|
|
|
|
<p class="name">{{ $t('column.keyword') }}</p> |
|
|
|
|
|
|
|
<p class="val">{{ form.keyword }}</p> |
|
|
|
|
|
|
|
</template> |
|
|
|
<p class="name">{{ $t('column.introduce') }}</p> |
|
|
|
<p class="name">{{ $t('column.introduce') }}</p> |
|
|
|
<div class="flex"> |
|
|
|
<div class="flex"> |
|
|
|
<div class="des" |
|
|
|
<div class="des" v-html="form.mainBody"></div> |
|
|
|
v-html="form.mainBody"></div> |
|
|
|
|
|
|
|
<!-- <img v-if="form.titleImg" width="222" height="222" :src="form.titleImg" alt=""> --> |
|
|
|
<!-- <img v-if="form.titleImg" width="222" height="222" :src="form.titleImg" alt=""> --> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="right"> |
|
|
|
<div class="right"> |
|
|
|
<img class="pic" |
|
|
|
<img class="pic" src="@/assets/images/publish3.png" alt=""> |
|
|
|
src="@/assets/images/publish3.png" |
|
|
|
|
|
|
|
alt=""> |
|
|
|
|
|
|
|
<div class="texts"> |
|
|
|
<div class="texts"> |
|
|
|
<template v-if="form.periodicalName"> |
|
|
|
<template v-if="form.periodicalName"> |
|
|
|
<p class="name">{{ $t('column.publicationName') }}</p> |
|
|
|
<p class="name">{{ $t('column.publicationName') }}</p> |
|
|
@ -33,8 +37,7 @@ |
|
|
|
<p class="name">{{ $t('column.yearOfPublication') }}</p> |
|
|
|
<p class="name">{{ $t('column.yearOfPublication') }}</p> |
|
|
|
<p class="val">{{ form.publicationYear }}{{ $t('column.year') }}</p> |
|
|
|
<p class="val">{{ form.publicationYear }}{{ $t('column.year') }}</p> |
|
|
|
<div class="flex"> |
|
|
|
<div class="flex"> |
|
|
|
<div v-if="form.reel" |
|
|
|
<div v-if="form.reel" class="m-r-20"> |
|
|
|
class="m-r-20"> |
|
|
|
|
|
|
|
<p class="name">{{ $t('column.rollUp') }}</p> |
|
|
|
<p class="name">{{ $t('column.rollUp') }}</p> |
|
|
|
<p class="val">{{ form.reel }}</p> |
|
|
|
<p class="val">{{ form.reel }}</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -45,7 +48,8 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<template v-if="form.publicationTypeId"> |
|
|
|
<template v-if="form.publicationTypeId"> |
|
|
|
<p class="name">{{ $t('column.publicationType') }}</p> |
|
|
|
<p class="name">{{ $t('column.publicationType') }}</p> |
|
|
|
<p class="val">{{ form.publicationTypeId && publicationTypes.find(e => e.id == form.publicationTypeId).name }}</p> |
|
|
|
<p class="val">{{ form.publicationTypeId && publicationTypes.find(e => e.id == |
|
|
|
|
|
|
|
form.publicationTypeId).name }}</p> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template v-if="form.doi"> |
|
|
|
<template v-if="form.doi"> |
|
|
|
<p class="name">DOI</p> |
|
|
|
<p class="name">DOI</p> |
|
|
@ -154,105 +158,126 @@ export default { |
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
<style lang="scss" scoped> |
|
|
|
.wrap { |
|
|
|
.wrap { |
|
|
|
background: url(../../assets/images/publish1.png) no-repeat; |
|
|
|
background: url(../../assets/images/publish1.png) no-repeat; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.content { |
|
|
|
.content { |
|
|
|
width: 1084px; |
|
|
|
width: 1084px; |
|
|
|
padding-top: 25px; |
|
|
|
padding-top: 25px; |
|
|
|
background: url(../../assets/images/publish2.png) bottom right/auto no-repeat; |
|
|
|
background: url(../../assets/images/publish2.png) bottom right/auto no-repeat; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.breadcrumb { |
|
|
|
.breadcrumb { |
|
|
|
margin-bottom: 25px; |
|
|
|
margin-bottom: 25px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.article { |
|
|
|
.article { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
justify-content: space-between; |
|
|
|
.left { |
|
|
|
|
|
|
|
width: 846px; |
|
|
|
.left { |
|
|
|
padding: 30px; |
|
|
|
width: 846px; |
|
|
|
margin-right: 16px; |
|
|
|
padding: 30px; |
|
|
|
background: #fff; |
|
|
|
margin-right: 16px; |
|
|
|
.name { |
|
|
|
background: #fff; |
|
|
|
font-size: 24px; |
|
|
|
|
|
|
|
font-family: PingFangSC-Medium, PingFang SC; |
|
|
|
.name { |
|
|
|
font-weight: 500; |
|
|
|
font-size: 24px; |
|
|
|
color: #333333; |
|
|
|
font-family: PingFangSC-Medium, PingFang SC; |
|
|
|
line-height: 33px; |
|
|
|
font-weight: 500; |
|
|
|
} |
|
|
|
color: #333333; |
|
|
|
.val { |
|
|
|
line-height: 33px; |
|
|
|
margin-bottom: 38px; |
|
|
|
|
|
|
|
font-size: 16px; |
|
|
|
|
|
|
|
color: #333; |
|
|
|
|
|
|
|
line-height: 30px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.des { |
|
|
|
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
// margin-right: 49px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
h2 { |
|
|
|
|
|
|
|
padding-bottom: 27px; |
|
|
|
.val { |
|
|
|
margin-bottom: 40px; |
|
|
|
margin-bottom: 38px; |
|
|
|
font-size: 36px; |
|
|
|
font-size: 16px; |
|
|
|
font-family: PingFangSC-Medium, PingFang SC; |
|
|
|
color: #333; |
|
|
|
color: #333; |
|
|
|
line-height: 30px; |
|
|
|
line-height: 50px; |
|
|
|
|
|
|
|
border-bottom: 1px solid #ddd; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
.right { |
|
|
|
|
|
|
|
width: 222px; |
|
|
|
.des { |
|
|
|
background: #fff; |
|
|
|
width: 100%; |
|
|
|
.texts { |
|
|
|
// margin-right: 49px; |
|
|
|
padding: 15px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.name { |
|
|
|
|
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC; |
|
|
|
|
|
|
|
line-height: 20px; |
|
|
|
|
|
|
|
color: #666666; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.val { |
|
|
|
|
|
|
|
margin: 5px 0 36px; |
|
|
|
|
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
font-family: PingFangSC-Medium, PingFang SC; |
|
|
|
|
|
|
|
font-weight: 500; |
|
|
|
|
|
|
|
color: #333333; |
|
|
|
|
|
|
|
line-height: 20px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
.list { |
|
|
|
} |
|
|
|
margin-bottom: 20px; |
|
|
|
|
|
|
|
li { |
|
|
|
h2 { |
|
|
|
padding: 16px 0; |
|
|
|
padding-bottom: 27px; |
|
|
|
border-bottom: 1px solid #d8d8d8; |
|
|
|
margin-bottom: 40px; |
|
|
|
} |
|
|
|
font-size: 36px; |
|
|
|
.text { |
|
|
|
font-family: PingFangSC-Medium, PingFang SC; |
|
|
|
margin-bottom: 5px; |
|
|
|
color: #333; |
|
|
|
font-size: 14px; |
|
|
|
line-height: 50px; |
|
|
|
cursor: pointer; |
|
|
|
border-bottom: 1px solid #ddd; |
|
|
|
&:hover { |
|
|
|
} |
|
|
|
color: $main-color; |
|
|
|
|
|
|
|
} |
|
|
|
.right { |
|
|
|
} |
|
|
|
width: 222px; |
|
|
|
.date { |
|
|
|
background: #fff; |
|
|
|
font-size: 12px; |
|
|
|
|
|
|
|
color: #999; |
|
|
|
.texts { |
|
|
|
} |
|
|
|
padding: 15px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.name { |
|
|
|
|
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC; |
|
|
|
|
|
|
|
line-height: 20px; |
|
|
|
|
|
|
|
color: #666666; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.val { |
|
|
|
|
|
|
|
margin: 5px 0 36px; |
|
|
|
|
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
font-family: PingFangSC-Medium, PingFang SC; |
|
|
|
|
|
|
|
font-weight: 500; |
|
|
|
|
|
|
|
color: #333333; |
|
|
|
|
|
|
|
line-height: 20px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.list { |
|
|
|
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
|
|
|
padding: 16px 0; |
|
|
|
|
|
|
|
border-bottom: 1px solid #d8d8d8; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.text { |
|
|
|
|
|
|
|
margin-bottom: 5px; |
|
|
|
|
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
|
|
|
color: $main-color; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.date { |
|
|
|
|
|
|
|
font-size: 12px; |
|
|
|
|
|
|
|
color: #999; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1084px) { |
|
|
|
@media (max-width: 1084px) { |
|
|
|
.content { |
|
|
|
.content { |
|
|
|
width: 95%; |
|
|
|
width: 95%; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.article { |
|
|
|
|
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.left, |
|
|
|
|
|
|
|
.right { |
|
|
|
|
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
.article { |
|
|
|
|
|
|
|
flex-direction: column; |
|
|
|
.right { |
|
|
|
.left, |
|
|
|
margin: 20px 0 0; |
|
|
|
.right { |
|
|
|
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.right { |
|
|
|
|
|
|
|
margin: 20px 0 0; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |