|
@@ -153,7 +153,7 @@ func (p *ProductController) ProductList(productType string, permissionIds string
|
|
|
Current: p.PageInfo.Current,
|
|
|
PageSize: p.PageInfo.PageSize,
|
|
|
}
|
|
|
- pageRes.Total, pageRes.LatestId = productService.GetTotalPageCountByProductType(productType, permissionIdList, userInfo.Id)
|
|
|
+ list, err := productService.GetProductListByProductType(productType, permissionIdList, userInfo.Id)
|
|
|
if p.PageInfo.LatestId == 0 {
|
|
|
p.PageInfo.LatestId = pageRes.LatestId
|
|
|
p.PageInfo.Total = pageRes.Total
|
|
@@ -162,12 +162,6 @@ func (p *ProductController) ProductList(productType string, permissionIds string
|
|
|
pageRes.Total = p.PageInfo.Total
|
|
|
}
|
|
|
pageRes.TotalPage = page.TotalPages(pageRes.Total, pageRes.PageSize)
|
|
|
- list, err := productService.ProductList(productType, p.PageInfo)
|
|
|
- if err != nil {
|
|
|
- p.FailedResult("分页查询产品列表失败", result)
|
|
|
- err = exception.NewWithException(exception.GetProductListFailed, err.Error())
|
|
|
- return
|
|
|
- }
|
|
|
productList := new(page.PageResult)
|
|
|
productList.Data = list
|
|
|
productList.Page = pageRes
|