diff --git a/app/common/repositories/store/product/ProductRepository.php b/app/common/repositories/store/product/ProductRepository.php
index c08f403e..6ac0083b 100644
--- a/app/common/repositories/store/product/ProductRepository.php
+++ b/app/common/repositories/store/product/ProductRepository.php
@@ -1255,12 +1255,26 @@ class ProductRepository extends BaseRepository
if ($res['content'] && $res['content']['type'] == 1) {
$content= json_decode($res['content']['content']);
if(is_Array($content) && isset($content['image'])){
- $res['content']['content'] =$content;
+ $img='';
+ foreach($content['image'] as $k=>$v){
+ $img=$img.'
';
+ }
+ $res['content']['content']=$img;
+
}elseif(is_object($content)){
- $res['content']['content'] =$content->image??'';
+ $image= $content->image??[];
+ $img='';
+ foreach($image as $k=>$v){
+ $img =$img. '
';
+ }
+ $res['content']['content']=$img;
}
else{
- $res['content']['content'] =['image'=>$content];
+ $img='';
+ foreach($content as $k=>$v){
+ $img =$img. '
';
+ }
+ $res['content']['content']=$img;
}
}