|
多人群组,《点名发言》系统是可以听到声音,但是当前用户的《申请发言》执法记录仪无响应,没有提示麦克风授权,需要怎么操作呢?
- applyForStartSpeak() {
- const that = this
- var confManager = this.$JswVideo.jswSession.swGetConfManager()
- var conf = confManager.swGetConfByConfId(this.currentConfid)
- if (conf == null) {
- this.$message.error('会议不存在')
- return
- }
- conf.swApplyForSpeak({
- callback: function(sender, event, json) {
- that.$message.success('申请发言')
- }
- })
- },
copycode 下图是点击申请发言的日志信息
|
|