lizhen_gitee 10 月之前
父节点
当前提交
84df3a878f
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      application/api/controller/Index.php
  2. 1 1
      application/api/controller/Userintro.php

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

@@ -27,7 +27,7 @@ class Index extends Api
         $where = [
             'user.id' => ['neq',$this->auth->id],
             'user.status' => 1,
-            'user.gender' => ['neq',$this->auth->gender],
+            'user.gender' => $this->auth->gender == 1 ? 0 : 1,
         ];
 
         //女性强制实名,强制真人

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

@@ -63,7 +63,7 @@ class Userintro extends Api
             'id' => $this->auth->id,
             'title' => '珍友',
             'waittext' => '您的专属海报正在拼命生成中,请等待片刻...',
-            'bg_image' => '/assets/img/posteruserbg.png',
+            'bg_image' => !empty(config('site.poster_bg_image')) ? localpath_to_netpath(config('site.poster_bg_image')) : '/assets/img/posteruserbg.png',
             'data' => $data,
             'status' => 'normal',
             'weigh' => 0,