...
|
...
|
@@ -443,11 +443,44 @@ class ShopModel |
|
|
*/
|
|
|
public static function goodsTabBar($data)
|
|
|
{
|
|
|
$result = array();
|
|
|
|
|
|
if (isset($data['resource_data'])) {
|
|
|
$result = $data['resource_data'];
|
|
|
$more = array(
|
|
|
'name' => 'MORE',
|
|
|
'href' => self::$shopListUrl
|
|
|
);
|
|
|
$result = array(
|
|
|
'hot' => array(),
|
|
|
'new' => array()
|
|
|
);
|
|
|
if (empty($data['resource_data'])) {
|
|
|
return $result;
|
|
|
}
|
|
|
|
|
|
if (isset($data['resource_data']['hot'])) {
|
|
|
foreach ($data['resource_data']['hot'] as $val) {
|
|
|
if (empty($val['url'])) {
|
|
|
continue;
|
|
|
}
|
|
|
$result['hot'][] = array(
|
|
|
'name' => $val['name'],
|
|
|
'href' => 'http://' . trim($val['url'], 'http://'),
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (isset($data['resource_data']['new'])) {
|
|
|
foreach ($data['resource_data']['new'] as $val) {
|
|
|
if (empty($val['url'])) {
|
|
|
continue;
|
|
|
}
|
|
|
$result['new'][] = array(
|
|
|
'name' => $val['name'],
|
|
|
'href' => 'http://' . trim($val['url'], 'http://'),
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
$result['hot'][] = $more;
|
|
|
$result['new'][] = $more;
|
|
|
return $result;
|
|
|
}
|
|
|
|
...
|
...
|
|