Authored by 郭成尧

'热门品类的名称'

... ... @@ -277,7 +277,11 @@ class ShopProcess
if (!empty($data)) {
self::$shopData['hotCategory']['name'] = '热门品类';
foreach ($data as $cate) {
self::$shopData['hotCategory']['list'][] = array('url' => $cate['url'], 'img' => str_replace('http:', '', $cate['src']));
self::$shopData['hotCategory']['list'][] = array(
'url' => $cate['url'],
'img' => str_replace('http:', '', $cate['src']),
'name' => $cate['name'] // tar add 160824 热门分类的名称
);
}
}
}
... ...