Mudu.Room.Appointment 预约组件
发起预约变更的事实消息监听
Mudu.Room.Appointment.AddAppointmentChangeListening(function(res) {
console.log('通过实时消息获取到的预约信息:', res)
})
名称 |
说明 |
类型 |
type |
该消息的基本类型 |
string |
content |
该消息类型对应的字段 |
string |
event |
该消息对应的订阅事件类型 |
string |
action |
该消息的具体行为类型 |
string |
action_data |
根据action对应的数据 |
object |
名称 |
说明 |
类型 |
appointment_id |
预约id |
number |
theme |
预约主题 |
string |
act_time |
开播时间 |
string |
智能人机校验
Mudu.Room.Appointment.InitCaptcha(renderTo, width, height)
点击预约提交信息
Mudu.Room.Appointment.SubmitAppointmentInfo(appointmentId, phone, function (res) {
if (res.errcode === 1000) {
console.log('预约成功')
} else {
console.log(res.msg || '点击预约提交信息失败')
}
}
)
名称 |
说明 |
类型 |
errcode |
接口code码 |
number |
msg |
消息 |
string |
info |
预约信息 |
object |
获取预约信息
Mudu.Room.Appointment.GetAppointmentInfo(function (res) {
if (res.errcode === 1000) {
console.log('获取到预约信息,数据为:', res.info)
} else {
console.log(res.msg || '获取预约信息失败')
}
})
名称 |
说明 |
类型 |
errcode |
接口code码 |
number |
msg |
消息 |
string |
info |
预约信息 |
object |
名称 |
说明 |
类型 |
appointment_id |
预约id |
number |
theme |
预约主题 |
string |
act_time |
开播时间 |
string |
person_count |
已经预约人数 |
number |
flag |
当前用户是否已经预约 |
boolean |