适配微信小程序

This commit is contained in:
2025-12-16 09:55:10 +08:00
parent de7b9ae59f
commit 538070cce0
3 changed files with 229 additions and 32 deletions

View File

@@ -69,7 +69,7 @@ export function getCallRoom(roomId: string): Promise<RoomInfoResponse> {
export function joinCallRoom(data: {
room_id: string
user_id: string
platform: 'h5' | 'app' | 'miniprogram'
platform: 'h5' | 'web' | 'app' | 'miniprogram' | 'wxapp'
}): Promise<JoinCallRoomResponse> {
return request.post('/call/join', data)
}