路由修正

This commit is contained in:
2026-01-28 11:42:55 +08:00
parent f4265995bc
commit 1bf08ff52f
6 changed files with 40 additions and 4 deletions

1
.gitignore vendored
View File

@@ -204,3 +204,4 @@ THAI-Platform/*
urbanLifelineWeb/packages/wechat_demo/*
urbanLifelineWeb/packages/workcase_wechat/unpackage/*
docs/AI训练资料
tellhow-app2/

3
.idea/vcs.xml generated
View File

@@ -2,5 +2,8 @@
<project version="4">
<component name="VcsDirectoryMappings">
<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>
</project>

View File

@@ -1,4 +1,10 @@
{
"maven.view": "hierarchical",
"editor.tabSize": 4,
"[*.ts]": {
"editor.tabSize": 2
},
"[*.vue]": {
"editor.tabSize": 2
}
}

Submodule ai-management-platform added at 410de71bf2

1
pigx-ai-app Submodule

Submodule pigx-ai-app added at f158835910

View File

@@ -715,9 +715,33 @@ async function handleJoinMeeting(meetingId: string) {
console.log('[handleJoinMeeting] 完整会议URL:', fullMeetingUrl)
// 跳转到会议页面
uni.navigateTo({
url: `/pages/meeting/Meeting?meetingId=${meetingId}&meetingName=${encodeURIComponent(meetingName)}&jitsiIframeUrl=${encodeURIComponent(fullMeetingUrl)}`
// 小程序环境:显示提示,引导用户复制链接在浏览器打开
uni.showModal({
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 {
console.error('[handleJoinMeeting] 加入会议失败, isSuccess:', isSuccess, 'data:', meetingData)