|
|
@ -90,12 +90,14 @@ export default { |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
// 查询文章列表 |
|
|
|
// 查询文章列表 |
|
|
|
getArticle () { |
|
|
|
getArticle () { |
|
|
|
|
|
|
|
const form = JSON.parse(JSON.stringify(this.form)) |
|
|
|
|
|
|
|
form.monographQueryKeyWord = encodeURI(form.monographQueryKeyWord) |
|
|
|
this.id && this.$post(this.api.newlyPublishedArticles, Util.rsa({ |
|
|
|
this.id && this.$post(this.api.newlyPublishedArticles, Util.rsa({ |
|
|
|
siteId: this.$route.query.siteId || this.$store.state.content.site, |
|
|
|
siteId: this.$route.query.siteId || this.$store.state.content.site, |
|
|
|
columnIds: this.id, |
|
|
|
columnIds: this.id, |
|
|
|
pageNum: this.page, |
|
|
|
pageNum: this.page, |
|
|
|
pageSize: this.pageSize, |
|
|
|
pageSize: this.pageSize, |
|
|
|
...this.form |
|
|
|
...form |
|
|
|
})) |
|
|
|
})) |
|
|
|
.then(({ data }) => { |
|
|
|
.then(({ data }) => { |
|
|
|
this.list = Util.removeTag(data.records); |
|
|
|
this.list = Util.removeTag(data.records); |
|
|
|