Showing
1 changed file
with
5 additions
and
1 deletions
@@ -543,7 +543,11 @@ class DetailModel | @@ -543,7 +543,11 @@ class DetailModel | ||
543 | if (!empty($sizeInfo['washTipsBoList'])) { | 543 | if (!empty($sizeInfo['washTipsBoList'])) { |
544 | $result['washTips']['list'] = array(); | 544 | $result['washTips']['list'] = array(); |
545 | foreach ($sizeInfo['washTipsBoList'] as $value) { | 545 | foreach ($sizeInfo['washTipsBoList'] as $value) { |
546 | - $result['washTips']['list'][] = $value; | 546 | + //$result['washTips']['list'][] = $value; |
547 | + $result['washTips']['list'][] = array( | ||
548 | + 'img' => strtr($value['img'], array('http://' => '//')), | ||
549 | + 'caption' => $value['caption'], | ||
550 | + ); | ||
547 | } | 551 | } |
548 | } | 552 | } |
549 | 553 |
-
Please register or login to post a comment