|
|
@ -139,9 +139,9 @@ export default { |
|
|
|
name: '修改人' |
|
|
|
name: '修改人' |
|
|
|
} |
|
|
|
} |
|
|
|
], |
|
|
|
], |
|
|
|
keyword: '', |
|
|
|
keyword: this.$route.query.keyword || '', |
|
|
|
list: [], |
|
|
|
list: [], |
|
|
|
page: 1, |
|
|
|
page: +this.$route.query.page || 1, |
|
|
|
pageSize: 10, |
|
|
|
pageSize: 10, |
|
|
|
total: 0, |
|
|
|
total: 0, |
|
|
|
modifiedTimeSort: '', |
|
|
|
modifiedTimeSort: '', |
|
|
@ -263,7 +263,7 @@ export default { |
|
|
|
// 文章列表 |
|
|
|
// 文章列表 |
|
|
|
getData () { |
|
|
|
getData () { |
|
|
|
const id = this.$refs.column.getCurrentKey() |
|
|
|
const id = this.$refs.column.getCurrentKey() |
|
|
|
this.$router.push(`/article?columnId=${id}`).catch(e => { }) |
|
|
|
this.$router.push(`/article?columnId=${id}&page=${this.page}&keyword=${this.keyword || ''}`).catch(e => { }) |
|
|
|
const { keyword } = this |
|
|
|
const { keyword } = this |
|
|
|
const data = { |
|
|
|
const data = { |
|
|
|
siteId: this.$store.state.content.site.id, |
|
|
|
siteId: this.$store.state.content.site.id, |
|
|
|