路由修正
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -203,4 +203,5 @@ cython_debug/
|
|||||||
THAI-Platform/*
|
THAI-Platform/*
|
||||||
urbanLifelineWeb/packages/wechat_demo/*
|
urbanLifelineWeb/packages/wechat_demo/*
|
||||||
urbanLifelineWeb/packages/workcase_wechat/unpackage/*
|
urbanLifelineWeb/packages/workcase_wechat/unpackage/*
|
||||||
docs/AI训练资料
|
docs/AI训练资料
|
||||||
|
tellhow-app2/
|
||||||
3
.idea/vcs.xml
generated
3
.idea/vcs.xml
generated
@@ -2,5 +2,8 @@
|
|||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="" vcs="Git" />
|
<mapping directory="" vcs="Git" />
|
||||||
|
<mapping directory="$PROJECT_DIR$/ai-management-dify" vcs="Git" />
|
||||||
|
<mapping directory="$PROJECT_DIR$/ai-management-platform" vcs="Git" />
|
||||||
|
<mapping directory="$PROJECT_DIR$/pigx-ai-app" vcs="Git" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@@ -1,4 +1,10 @@
|
|||||||
{
|
{
|
||||||
"maven.view": "hierarchical",
|
"maven.view": "hierarchical",
|
||||||
"editor.tabSize": 4,
|
"editor.tabSize": 4,
|
||||||
|
"[*.ts]": {
|
||||||
|
"editor.tabSize": 2
|
||||||
|
},
|
||||||
|
"[*.vue]": {
|
||||||
|
"editor.tabSize": 2
|
||||||
|
}
|
||||||
}
|
}
|
||||||
1
ai-management-platform
Submodule
1
ai-management-platform
Submodule
Submodule ai-management-platform added at 410de71bf2
1
pigx-ai-app
Submodule
1
pigx-ai-app
Submodule
Submodule pigx-ai-app added at f158835910
@@ -715,9 +715,33 @@ async function handleJoinMeeting(meetingId: string) {
|
|||||||
|
|
||||||
console.log('[handleJoinMeeting] 完整会议URL:', fullMeetingUrl)
|
console.log('[handleJoinMeeting] 完整会议URL:', fullMeetingUrl)
|
||||||
|
|
||||||
// 跳转到会议页面
|
// 小程序环境:显示提示,引导用户复制链接在浏览器打开
|
||||||
uni.navigateTo({
|
uni.showModal({
|
||||||
url: `/pages/meeting/Meeting?meetingId=${meetingId}&meetingName=${encodeURIComponent(meetingName)}&jitsiIframeUrl=${encodeURIComponent(fullMeetingUrl)}`
|
title: '视频会议',
|
||||||
|
content: '微信小程序暂不支持视频会议,请复制链接在浏览器中打开',
|
||||||
|
confirmText: '复制链接',
|
||||||
|
cancelText: '取消',
|
||||||
|
success: (res) => {
|
||||||
|
if (res.confirm) {
|
||||||
|
// 复制链接到剪贴板
|
||||||
|
uni.setClipboardData({
|
||||||
|
data: fullMeetingUrl,
|
||||||
|
success: () => {
|
||||||
|
uni.showToast({
|
||||||
|
title: '链接已复制,请在浏览器中打开',
|
||||||
|
icon: 'none',
|
||||||
|
duration: 3000
|
||||||
|
})
|
||||||
|
},
|
||||||
|
fail: () => {
|
||||||
|
uni.showToast({
|
||||||
|
title: '复制失败,请手动复制',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
console.error('[handleJoinMeeting] 加入会议失败, isSuccess:', isSuccess, 'data:', meetingData)
|
console.error('[handleJoinMeeting] 加入会议失败, isSuccess:', isSuccess, 'data:', meetingData)
|
||||||
|
|||||||
Reference in New Issue
Block a user