@@ -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,
];
//女性强制实名,强制真人
@@ -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,