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

104 lines
2.9 KiB

2 years ago
<template>
<div class="wrap">
<div class="forms">
<div class="item">
2 years ago
<span class="label">{{$t('column.Publicationtime')}}</span>
2 years ago
<el-date-picker
style="width: 300px"
2 years ago
v-model="form.publicationTime"
2 years ago
type="year"
2 years ago
:placeholder="$t('column.pleaseSelectThePublicationTime')"
2 years ago
format="yyyy"
value-format="yyyy"
2 years ago
clearable
2 years ago
@change="initData">
</el-date-picker>
</div>
<div class="search">
2 years ago
<input type="text" :placeholder="$t('column.PleasenameoftheAuthor')" v-model="form.monographQueryKeyWord" clearable>
2 years ago
</div>
</div>
<el-table :data="list" class="patent-table" ref="table" stripe header-align="center">
2 years ago
<el-table-column prop="title" :label="$t('column.titleOfWork')" align="center" min-width="150"></el-table-column>
<el-table-column prop="publishingHouse" :label="$t('column.press')" align="center" min-width="150"></el-table-column>
<el-table-column prop="writersAndEditors" :label="$t('column.authorPersion')" align="center" min-width="150"></el-table-column>
<el-table-column prop="publicationYear" :label="$t('column.Publicationtime')" align="center" min-width="150"></el-table-column>
2 years ago
</el-table>
<div class="pagination">
<el-pagination background @current-change="currentChange" :current-page="page" layout="total, prev, pager, next" :total="total"></el-pagination>
</div>
</div>
</template>
<script>
import Util from '@/libs/util';
import ColumnConst from '@/const/column'
export default {
props: ['id'],
data() {
return {
patentClasses: ColumnConst.patentClasses,
searchTimer: null,
form: {
2 years ago
monographQueryKeyWord: '',
2 years ago
publicationTime: ''
2 years ago
},
classifications: [],
list: [],
page: 1,
pageSize: 10,
total: 0,
}
},
watch: {
id() {
this.id && this.initData()
},
2 years ago
'form.monographQueryKeyWord': function (val) {
2 years ago
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
}, 500);
}
},
mounted() {
this.initData()
},
methods: {
// 查询文章列表
getArticle() {
this.id && this.$post(this.api.newlyPublishedArticles, {
siteId: this.$route.query.siteId || this.$store.state.content.site,
columnIds: this.id,
pageNum: this.page,
pageSize: this.pageSize,
...this.form
})
.then(({ data }) => {
this.list = Util.removeTag(data.records);
this.total = +data.total;
})
.catch((res) => { });
},
initData() {
this.page = 1
this.getArticle()
},
currentChange(val) {
this.page = val
this.getData()
},
}
};
</script>
<style lang="scss" scoped>
2 years ago
@import "../../styles/page/publication.scss";
2 years ago
/deep/.patent-table {
thead tr, thead th {
color: #fff;
background-color: #1583FF;
}
}
</style>