|
...
|
...
|
@@ -56,6 +56,8 @@ class Product extends Base |
|
|
|
$v['url'] = getImageUrl($v['url']);
|
|
|
|
$value[$k] = $v;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$value = json_decode([]);
|
|
|
|
}
|
|
|
|
return $value;
|
|
|
|
}
|
|
...
|
...
|
@@ -74,6 +76,8 @@ class Product extends Base |
|
|
|
$v = getImageUrl($v);
|
|
|
|
$value[$k] = $v;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$value = json_decode([]);
|
|
|
|
}
|
|
|
|
return $value;
|
|
|
|
}
|
...
|
...
|
|