|
@@ -108,8 +108,8 @@ func (this *FollowEnt) PcSimpleFollowList() {
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
- pSize, _ := this.GetInteger("pageSize") //每页数据量
|
|
|
- if pSize > 10 {
|
|
|
+ pSize, _ := this.GetInteger("size") //每页数据量
|
|
|
+ if pSize <= 0 || pSize > 10 {
|
|
|
pSize = 10
|
|
|
}
|
|
|
entList, err := followEntManager.GetEntFollowAndChangeList(pSize)
|