wupengfei 2 years ago
parent
commit
73a6a914fb
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .idea/workspace.xml
  2. 1 1
      application/api/controller/Press.php

+ 1 - 1
.idea/workspace.xml

@@ -170,7 +170,7 @@
       <workItem from="1666054299858" duration="23137000" />
       <workItem from="1666140525910" duration="23609000" />
       <workItem from="1666227349089" duration="7795000" />
-      <workItem from="1666313182769" duration="5089000" />
+      <workItem from="1666313182769" duration="5134000" />
     </task>
     <servers />
   </component>

+ 1 - 1
application/api/controller/Press.php

@@ -558,7 +558,7 @@ class Press extends Base
                 ->leftJoin('Press i','t.first_id = i.id')
                 ->leftJoin('store_member u','t.user_id = u.id')
                 ->find()->toArray();
-            $parent_comment['images_arr'] = $parent_comment['images'] ? explode('|',$v['images']) : null;
+            $parent_comment['images_arr'] = $parent_comment['images'] ? explode('|',$parent_comment['images']) : null;
             $v['parent_comment'] = $parent_comment;
         }
         $this->success('ok',['list'=>$list]);