作者 陈志颖

fix:空数组返回

... ... @@ -359,6 +359,9 @@ func (c *PartnerInfoController) ListPartnerInfo() {
}
resp = append(resp, m)
}
if len(resp) == 0 {
resp = []map[string]interface{}{}
}
c.ResponsePageList(resp, count, param.PageNumber)
return
}
... ...