...
|
...
|
@@ -123,7 +123,7 @@ class ShopProcess |
|
|
}
|
|
|
self::$shopData['spring'][$key] = array(
|
|
|
'url' => $val['data'][0]['url'],
|
|
|
'springType' => $val['data'][0]['src']
|
|
|
'springType' => str_replace('http:', '', $val['data'][0]['src'])
|
|
|
);
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -178,7 +178,7 @@ class ShopProcess |
|
|
if (empty($slide['data'][0])) {
|
|
|
continue;
|
|
|
}
|
|
|
self::$shopData['bannerTop']['list'][] = array('url' => $slide['data'][0]['url'], 'img' => $slide['data'][0]['src']);
|
|
|
self::$shopData['bannerTop']['list'][] = array('url' => $slide['data'][0]['url'], 'img' => str_replace('http:', '', $slide['data'][0]['src']));
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -192,7 +192,7 @@ class ShopProcess |
|
|
{
|
|
|
self::$shopData['hotCategory']['name'] = '热门品类';
|
|
|
foreach ($data as $cate) {
|
|
|
self::$shopData['hotCategory']['list'][] = array('url' => $cate['url'], 'img' => $cate['src']);
|
|
|
self::$shopData['hotCategory']['list'][] = array('url' => $cate['url'], 'img' => str_replace('http:', '', $cate['src']));
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|