feat(zy): 增加俱乐部详情接口并优化游戏详情页面

- 新增俱乐部详情接口,包括成员性别比例和关注度统计
- 在游戏详情页面增加关注度统计
- 更新游戏活动状态文案
- 优化 dd 和 getsql 函数输出格式
This commit is contained in:
2025-05-18 11:44:02 +08:00
parent 6c4fc6bff6
commit 55af3cb570
4 changed files with 29 additions and 8 deletions

View File

@@ -593,13 +593,14 @@ if (!function_exists('dd')) {
*/
function dd(...$params)
{
echo '<pre>';
echo '
';
foreach ($params as $p) {
print_r($p);
echo '
<br>';
';
}
echo '</pre>';
// echo '</pre>';
die;
}
}
@@ -610,9 +611,10 @@ if (!function_exists('getsql')) {
*/
function getsql($query)
{
echo '<pre>';
echo '
';
print_r($query->fetchSql()->select());
echo '</pre>';
// echo '</pre>';
die;
}
}