wx.reserveChannelsLive({
noticeId: noticeId,
success(response) {
if (response.errMsg === 'reserveChannelsLive:ok') {
console.log(response,'调取预约弹窗接口')
// response.state 6--预约成功 7--取消预约 5 --未预约时,点击底部阴影空白关闭 8--已预约时, 点击底部阴影空白关闭
if (response.state === 6 || response.state === 7) {
let state = response.state === 6 ? 1 : 4
that.geRecordReserve({
type: state,
startTime: startTime,
})
that.setData({
isAppointment: response.state === 6
})
}
}
},
});只有鸿蒙系统的手机是这样,这个问题怎么解决,有遇到的吗
