|
@@ -99,7 +99,7 @@ export default {
|
|
|
},
|
|
|
// 查询文章
|
|
|
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']);
|
|
|
console.log(res, 'res');
|
|
|
if (res.code == 200) {
|
|
|
this.$set(this.mydata, 'articleList', res.rows)
|