...
|
...
|
@@ -204,21 +204,19 @@ public class PageSelectionsService extends AbstractCacheComponent<JSONObject> { |
|
|
*/
|
|
|
public List<IAggregation> getCollageAggregations(Map<String, String> paramMap) {
|
|
|
List<IAggregation> aggregations = new ArrayList<>();
|
|
|
// 1)专区名称
|
|
|
aggregations.add(aggregationFactory.getZqNameAggregation(1000));
|
|
|
// 2)品牌
|
|
|
// 1)品牌
|
|
|
aggregations.add(aggregationFactory.getBrandAggregation(paramMap));
|
|
|
// 3)人群
|
|
|
// 2)人群
|
|
|
aggregations.add(aggregationFactory.getAgeLevelAggregation());
|
|
|
// 4)品类
|
|
|
// 3)品类
|
|
|
aggregations.add(aggregationFactory.getSortGroupAggregation(paramMap));
|
|
|
// 5)性别
|
|
|
// 4)性别
|
|
|
aggregations.add(aggregationFactory.getGenderNewAggregation());
|
|
|
// 6)颜色
|
|
|
// 5)颜色
|
|
|
aggregations.add(aggregationFactory.getColorAggregation(paramMap));
|
|
|
// 7)尺码
|
|
|
// 6)尺码
|
|
|
aggregations.add(aggregationFactory.getSizeAggregation());
|
|
|
// 8)风格
|
|
|
// 7)风格
|
|
|
aggregations.add(aggregationFactory.getStyleAggregation(paramMap));
|
|
|
return aggregations;
|
|
|
}
|
...
|
...
|
|