Commit 957e6f8c by kaisa

feat:更新

parent df36b964
Showing with 12 additions and 0 deletions
...@@ -894,6 +894,18 @@ webAppComm.prototype.setNativeSwipeBackEnabled = function (enabled) { ...@@ -894,6 +894,18 @@ webAppComm.prototype.setNativeSwipeBackEnabled = function (enabled) {
webAppCollaboration(obj2); webAppCollaboration(obj2);
} }
// 59:上麦/下麦
webAppComm.prototype.micOnOff = function (type, num) {
let obj = {
"cid": 59,
"data": {
"micType": type, // 0:上麦 1:下麦
"micNum": num, // 麦位号
}
}
let obj2 = JSON.stringify(obj);
webAppCollaboration(obj2);
}
//接收客戶端的消息 //接收客戶端的消息
webAppComm.prototype.reMsgFromApp = function (callback) { webAppComm.prototype.reMsgFromApp = function (callback) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment