上线前新需求:加客服接口 公会退出 费用发给公会长

This commit is contained in:
2026-01-14 17:33:05 +08:00
parent 767f51d1d6
commit 699d6d4245

View File

@@ -53,8 +53,10 @@ class Banner extends controller
public function app_customer_service()
{
$platform_customer_service = get_system_config_value('platform_customer_service');
$user_id = model('User')->where('user_code', $platform_customer_service)->value('id');
$reslut = [
'user_id' => $platform_customer_service
'user_id' => $user_id,
'user_name' => "客服",
];
return V(1, '成功', $reslut);
}