This commit is contained in:
yj 2025-11-10 12:47:34 +08:00
parent 300194a8e4
commit 819c899c57
2 changed files with 14 additions and 1 deletions

View File

@ -193,6 +193,19 @@ Page({
})
},
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()
if (this.data.isJoin) {
return

View File

@ -5,5 +5,5 @@
"compileHotReLoad": true,
"urlCheck": true
},
"libVersion": "3.6.5"
"libVersion": "3.8.8"
}