Merge branch 'develop' of http://47.244.231.31:8099/zhl/globalso-v6 into develop
正在显示
1 个修改的文件
包含
6 行增加
和
5 行删除
| @@ -56,11 +56,12 @@ class ProductLogic extends BaseLogic | @@ -56,11 +56,12 @@ class ProductLogic extends BaseLogic | ||
| 56 | $info['created_uid_text'] = (new UserLogic())->getCacheInfo($info['created_uid'])['name'] ?? ''; | 56 | $info['created_uid_text'] = (new UserLogic())->getCacheInfo($info['created_uid'])['name'] ?? ''; |
| 57 | $info['url'] = $this->getProjectDomain() . $info['route'] ; | 57 | $info['url'] = $this->getProjectDomain() . $info['route'] ; |
| 58 | //统一图片链接 | 58 | //统一图片链接 |
| 59 | -// if(!empty($info['gallery'])){ | ||
| 60 | -// foreach ($info['gallery'] as $k => $v){ | ||
| 61 | -// $info['gallery'][$k]['image_link'] = $v['url']; | ||
| 62 | -// } | ||
| 63 | -// } | 59 | + if(!empty($info['gallery'])){ |
| 60 | + $info['gallery'] = json_decode($info['gallery']); | ||
| 61 | + foreach ($info['gallery'] as $k => $v){ | ||
| 62 | + $info['gallery'][$k]['image_link'] = $v['url']; | ||
| 63 | + } | ||
| 64 | + } | ||
| 64 | return $info; | 65 | return $info; |
| 65 | } | 66 | } |
| 66 | 67 |
-
请 注册 或 登录 后发表评论