This commit is contained in:
parent
300194a8e4
commit
819c899c57
|
|
@ -193,6 +193,19 @@ Page({
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
joinMeeting() {
|
joinMeeting() {
|
||||||
|
const deviceInfo = wx.getDeviceInfo()
|
||||||
|
if(deviceInfo && (deviceInfo.platform === 'windows' || deviceInfo.platform === 'mac')){
|
||||||
|
wx.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '当前仅支持移动端使用,PC端无法使用。',
|
||||||
|
showCancel: false,
|
||||||
|
confirmText: '我知道了',
|
||||||
|
success: function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return
|
||||||
|
}
|
||||||
this.closeDialog()
|
this.closeDialog()
|
||||||
if (this.data.isJoin) {
|
if (this.data.isJoin) {
|
||||||
return
|
return
|
||||||
|
|
|
||||||
|
|
@ -5,5 +5,5 @@
|
||||||
"compileHotReLoad": true,
|
"compileHotReLoad": true,
|
||||||
"urlCheck": true
|
"urlCheck": true
|
||||||
},
|
},
|
||||||
"libVersion": "3.6.5"
|
"libVersion": "3.8.8"
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue