【优化】小程序商品栏目列表调整为按照是否推荐、是否热门、排序从大到小排序方式。

This commit is contained in:
大灰灰
2022-12-23 00:51:48 +08:00
parent f6265186a6
commit 45e4513a1a

View File

@@ -237,7 +237,7 @@ namespace CoreCms.Net.Web.WebApi.Controllers
where = where.And(p => p.name.Contains(obj.searchName)); where = where.And(p => p.name.Contains(obj.searchName));
} }
} }
var orderBy = " isRecommend desc,isHot desc"; var orderBy = " isRecommend desc,isHot desc,sort desc";
if (!string.IsNullOrWhiteSpace(entity.order)) if (!string.IsNullOrWhiteSpace(entity.order))
{ {
orderBy += "," + entity.order; orderBy += "," + entity.order;