root.putAll(base);
root.put("searchURL", Constants.SEARCH_URL);
if(productId!=0) {
product = gatewayService.findProductById(productId);
}
if(product!=null) {
root.put("product", product);
if(product.getColor()!=null&&!"".equals(product.getColor())) {
List<ProductProperty> colors = gatewayService.findProductPropertyByIds(product.getColor().split(";"));