更新详情接口

This commit is contained in:
yaooo 2023-09-04 17:47:05 +08:00
parent fa0e73c7ae
commit 30bbd98960

View File

@ -327,6 +327,12 @@ class CommunityRepository extends BaseRepository
$data['care_count'] = $merInfo['care_count'];
}
}
if ($data['is_type'] == 2) {
$prevId = Db::name('community')->where('community_id', '<', $id)->where('is_type', 2)->order('community_id', 'desc')->value('community_id', 0);
$nextId = Db::name('community')->where('community_id', '>', $id)->where('is_type', 2)->order('community_id', 'asc')->value('community_id', 0);
$data['prev_id'] = $prevId;
$data['next_id'] = $nextId;
}
return $data;
}