|
@@ -78,7 +78,7 @@
|
|
|
},
|
|
|
// 查询文章
|
|
|
async getarticle(e) {
|
|
|
- const res = await cmsQuery({ ...e, pageNum: e?.pageNum ?? 1, pageSize: e?.pageSize ?? 10 }, 'article', this.$refs.dynamicForm.formdata['meta.catalog']);
|
|
|
+ const res = await cmsQuery({ pageNum: 1, pageSize: 10, ...e }, 'article', this.$refs.dynamicForm.formdata['meta.catalog']);
|
|
|
if (res.code == 200) {
|
|
|
this.$set(this.mydata, 'articleList', res.rows)
|
|
|
this.$set(this.mydata, 'articleTotal', res.total)
|