544782275@qq.com 3 年之前
父節點
當前提交
c04b02b30b
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      application/api/controller/Index.php

+ 3 - 3
application/api/controller/Index.php

@@ -220,15 +220,15 @@ class Index extends Base
         if($comment_list){
             foreach ($comment_list as $key=>&$value){
                 $user_info = Db::name('store_member')->field('name,headimg,privacy_switch')->where('id',$value['user_id'])->find();
-                /*if($user_info['privacy_switch']){
+                if($user_info['privacy_switch']){
                     unset($comment_list[$key]);
                     continue;
-                }*/
+                }
                 $value['user_name'] = $user_info['name'];
                 $value['user_headimg'] = $user_info['headimg'];
                 //获取该条评论回复的数量
                 $value['apply_num'] = Db::name('store_comment')->where('forum_id',$id)->where('type',2)->where('forum_type',1)->where('root_comment_id',$value['id'])->count('id');
-                unset($value['user_id']);
+
             }
         }
         $this->success('获取成功',$comment_list);