跳转师徒任务房间

This commit is contained in:
2025-12-11 19:09:28 +08:00
parent 3ae792815c
commit 77e328147d

View File

@@ -468,4 +468,13 @@ class Room extends BaseCom
$reslut = model('Room')->send_room_message($this->uid, $user_id,$room_id);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
//师徒任务 21 22 23 跳转房间
public function task_jump_room()
{
$task_id = input('task_id', 0);
$reslut = model('Room')->task_jump_room_recommend($task_id);
return V(1, '成功', $reslut);
}
}