Skip to content

Commit 0cb7802

Browse files
committed
fix: 修复app article list参数丢失问题
1 parent 8af6e0c commit 0cb7802

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

internal/controller/article/article_app_list.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ import (
1010

1111
func (c *ControllerApp) List(ctx context.Context, req *app.ListReq) (res *app.ListRes, err error) {
1212
query := &model.ArticleQuery{
13+
Paging: model.Paging{
14+
Page: req.Page,
15+
Size: req.Size,
16+
},
17+
GrpId: req.GrpId,
18+
Search: req.Search,
1319
Onshow: true,
1420
IsDel: false,
1521
}

0 commit comments

Comments
 (0)