Authored by biao

fix hot bug

... ... @@ -94,7 +94,7 @@ const getBrandItems = (data) => {
let obj = {};
obj.link = item.sort_url;
obj.hot = item.is_hot;
obj.hot = item.is_hot === 'Y' ? true : false;
obj.brandName = item.sort_name;
brandItems.push(obj);
... ...