...
|
...
|
@@ -169,7 +169,7 @@ class ShopProcess |
|
|
* @param $data
|
|
|
* @author sefon 2016-4-27 16:50:01
|
|
|
*/
|
|
|
private static function largeSlideImg($data)
|
|
|
private static function largeSlideImg_APP($data)
|
|
|
{
|
|
|
foreach ($data as $slide) {
|
|
|
if (empty($slide['data'][0])) {
|
...
|
...
|
@@ -184,13 +184,10 @@ class ShopProcess |
|
|
* @author sefon 2016-4-27 08:38:36
|
|
|
* @return array
|
|
|
*/
|
|
|
private static function recommend($data)
|
|
|
private static function recommend_APP($data)
|
|
|
{
|
|
|
self::$shopData['hotCategory']['name'] = '热门品类';
|
|
|
foreach ($data as $cate) {
|
|
|
if ($cate['isShowInApp'] !== 'Y') {
|
|
|
continue;
|
|
|
}
|
|
|
self::$shopData['hotCategory']['list'][] = array('url' => $cate['url'], 'img' => $cate['src']);
|
|
|
}
|
|
|
}
|
...
|
...
|
|