作者 陈志颖

合并分支 'dev' 到 'test'

fix:空数组返回



查看合并请求 !5
@@ -359,6 +359,9 @@ func (c *PartnerInfoController) ListPartnerInfo() { @@ -359,6 +359,9 @@ func (c *PartnerInfoController) ListPartnerInfo() {
359 } 359 }
360 resp = append(resp, m) 360 resp = append(resp, m)
361 } 361 }
  362 + if len(resp) == 0 {
  363 + resp = []map[string]interface{}{}
  364 + }
362 c.ResponsePageList(resp, count, param.PageNumber) 365 c.ResponsePageList(resp, count, param.PageNumber)
363 return 366 return
364 } 367 }