Showing
1 changed file
with
5 additions
and
1 deletions
@@ -210,7 +210,11 @@ class CouponFloorProcess | @@ -210,7 +210,11 @@ class CouponFloorProcess | ||
210 | $image['src'] = str_replace('?imageView/{mode}/w/{width}/h/{height}', '', $image['src']); | 210 | $image['src'] = str_replace('?imageView/{mode}/w/{width}/h/{height}', '', $image['src']); |
211 | } | 211 | } |
212 | } | 212 | } |
213 | - $image['url'] = empty($image['url']) ? 'javascript:void(0);' : $image['url']; | 213 | + if($isApp){ |
214 | + $image['url'] = empty($image['url']) ? 'javascript:void(0);' : $image['url']; | ||
215 | + }else{ | ||
216 | + $image['url'] = empty($image['url']) ? 'javascript:void(0);' : Helpers::getFilterUrl($image['url']); | ||
217 | + } | ||
214 | } | 218 | } |
215 | $result['isImageList'] = true; | 219 | $result['isImageList'] = true; |
216 | $result['imageList'] = array( | 220 | $result['imageList'] = array( |
-
Please register or login to post a comment