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

259 lines
7.2 KiB

2 years ago
<template>
<div class="wrap">
<div class="content">
<Breadcrumb ref="breadcrumb" :data.sync="routes"/>
<div class="article">
<div class="left">
<h2>{{ form.title }}</h2>
2 years ago
<template v-if="form.author">
2 years ago
<p class="name">{{ $t('column.author') }}</p>
2 years ago
<p class="val">{{ form.author }}</p>
</template>
<template v-if="form.quote">
2 years ago
<p class="name">{{ $t('column.quote') }}</p>
2 years ago
<p class="val">{{ form.quote }}</p>
</template>
2 years ago
<p class="name">{{ $t('column.abstract') }}</p>
2 years ago
<div class="flex">
<div class="des" v-html="form.mainBody"></div>
2 years ago
<!-- <img v-if="form.titleImg" width="222" height="222" :src="form.titleImg" alt=""> -->
2 years ago
</div>
2 years ago
</div>
<div class="right">
<img class="pic" src="@/assets/images/publish3.png" alt="">
<div class="texts">
2 years ago
<template v-if="form.periodicalName">
2 years ago
<p class="name">{{ $t('column.publicationName') }}</p>
2 years ago
<p class="val">{{ form.periodicalName }}</p>
</template>
2 years ago
<p class="name">{{ $t('column.yearOfPublication') }}</p>
<p class="val">{{ form.publicationYear }}{{ $t('column.year') }}</p>
2 years ago
<div class="flex">
2 years ago
<div v-if="form.reel" class="m-r-20">
2 years ago
<p class="name">{{ $t('column.rollUp') }}</p>
2 years ago
<p class="val">{{ form.reel }}</p>
</div>
<div v-if="form.documentNumber">
2 years ago
<p class="name">{{ $t('column.documentNumber') }}</p>
2 years ago
<p class="val">{{ form.documentNumber }}</p>
</div>
</div>
2 years ago
<template v-if="form.publicationTypeId">
2 years ago
<p class="name">{{ $t('column.publicationType') }}</p>
2 years ago
<p class="val">{{ form.publicationTypeId && publicationTypes.find(e => e.id == form.publicationTypeId).name }}</p>
</template>
<template v-if="form.doi">
<p class="name">DOI</p>
<p class="val">{{ form.doi }}</p>
</template>
<p class="l-title">{{$t('column.hot')}}</p>
<ul class="list">
<li v-for="(item, i) in hots" :key="i" :title="item.title" @click="toArtice(item)">
<p class="text">{{ item.title }}</p>
<span class="date">{{ item.releaseTime }}</span>
</li>
</ul>
<p class="l-title">{{$t('column.latestNews')}}</p>
<ul class="list">
<li v-for="(item, i) in news" :key="i" @click="toArtice(item)">
<p class="text">{{ item.title }}</p>
<span class="date">{{ item.releaseTime }}</span>
</li>
</ul>
2 years ago
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import Setting from '@/setting'
import Util from '@/libs/util'
import Breadcrumb from '@/components/breadcrumb'
import mixins from '@/mixins/article'
import ColumnConst from '@/const/column'
2 years ago
export default {
mixins: [mixins],
data() {
return {
id: this.$route.query.articleId,
publicationTypes: ColumnConst.publicationTypes,
2 years ago
routes: [],
columnId: '',
form: {},
columnBanner: '',
2 years ago
news: [],
hots: []
2 years ago
}
},
components: {
Breadcrumb
},
watch: {
'$route'() {
this.id = this.$route.query.id
this.getInfo()
}
},
mounted() {
this.getInfo()
2 years ago
this.getArticle()
2 years ago
},
methods: {
// 获取文章详情
getInfo() {
this.$post(`${this.api.findArticle}?id=${this.id}`).then(({ data }) => {
// 设置面包屑
const { columnName, path, id } = this.$route.query
this.routes = [
{
name: columnName || data.columnName,
path: path ? '/' + path : '',
query: {
id: id || data.columnId
}
},
{
name: data.title
}
]
this.form = data
this.columnId = data.columnId
// 如果没上传banner
if (!data.bannerImg) {
this.getBanner(this.columns)
this.form.bannerImg = this.columnBanner || require('@/assets/images/article-banner.png')
}
}).catch(err => {})
// 浏览量+1
// this.$post(`${this.api.articlePreview}?contentId=${this.id}`).then(({ data }) => {}).catch(err => {})
},
// 获取banner 规则:当前文章有上传的,用上传的,没有上传的话,如果栏目有图片,读取栏目的(上级没有读上上级,以此类推)都没有的读取默认的
getBanner(data) {
for (const e of data) {
if (e.columnBanner) this.columnBanner = e.columnBanner
if (e.id == this.columnId) {
break
} else {
this.getBanner(e.children)
}
}
},
2 years ago
// 热点内容和最新资讯
getArticle() {
this.$post(`${this.api.hotContent}?siteId=${this.$route.query.siteId || this.$store.state.content.site}`).then(({ data }) => {
this.hots = Util.removeTag(data)
}).catch(err => {})
this.$post(this.api.newlyPublishedArticles, {
2 years ago
pageNum: 1,
pageSize: 5,
siteId: this.$route.query.siteId || this.$store.state.content.site
}).then(({ data }) => {
this.news = Util.removeTag(data.records)
}).catch(res => {})
},
2 years ago
}
};
</script>
<style lang="scss" scoped>
.wrap {
background: url(../../assets/images/publish1.png) no-repeat;
}
.content {
width: 1084px;
padding-top: 25px;
background: url(../../assets/images/publish2.png) bottom right/auto no-repeat;
}
.breadcrumb {
margin-bottom: 25px;
}
.article {
display: flex;
justify-content: space-between;
.left {
width: 846px;
padding: 30px;
margin-right: 16px;
background: #fff;
.name {
font-size: 24px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #333333;
line-height: 33px;
}
.val {
margin-bottom: 38px;
font-size: 16px;
color: #333;
line-height: 30px;
}
2 years ago
.des {
2 years ago
width: 100%;
// margin-right: 49px;
2 years ago
}
2 years ago
}
h2 {
padding-bottom: 27px;
margin-bottom: 40px;
font-size: 36px;
font-family: PingFangSC-Medium, PingFang SC;
color: #333;
line-height: 50px;
border-bottom: 1px solid #ddd;
}
.right {
width: 222px;
background: #fff;
.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;
}
}
2 years ago
.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;
}
}
2 years ago
}
@media (max-width: 1420px) {
.content {
width: 98%;
}
}
</style>