feat(h5): confidence gate + triage + image uploader + ws composable

新增 ConfidenceGateBanner/ImageUploader/TriageCard 组件与 useConfidenceGate; useH5WebSocket 增强; 对话/API 适配。
This commit is contained in:
Simon
2026-07-09 11:49:50 +08:00
parent 5e53146a9a
commit 12d89dfb35
18 changed files with 1712 additions and 20 deletions
+9
View File
@@ -14,7 +14,9 @@ declare module 'vue' {
CallAgentModal: typeof import('./src/components/chat/CallAgentModal.vue')['default']
ChatPanel: typeof import('./src/components/chat/ChatPanel.vue')['default']
ComingSoon: typeof import('./src/components/assistant/ComingSoon.vue')['default']
ConfidenceGateBanner: typeof import('./src/components/ConfidenceGateBanner.vue')['default']
EvaluationDialog: typeof import('./src/components/chat/EvaluationDialog.vue')['default']
ImageUploader: typeof import('./src/components/ImageUploader.vue')['default']
InputBar: typeof import('./src/components/chat/InputBar.vue')['default']
InputBox: typeof import('./src/components/chat/InputBox.vue')['default']
MessageBubble: typeof import('./src/components/chat/MessageBubble.vue')['default']
@@ -28,16 +30,23 @@ declare module 'vue' {
ScreenshotEditor: typeof import('./src/components/chat/ScreenshotEditor.vue')['default']
ShakeButton: typeof import('./src/components/chat/ShakeButton.vue')['default']
SoftwareDownloads: typeof import('./src/components/assistant/SoftwareDownloads.vue')['default']
TriageCard: typeof import('./src/components/TriageCard.vue')['default']
TroubleshootFlow: typeof import('./src/components/chat/TroubleshootFlow.vue')['default']
TroubleshootProgress: typeof import('./src/components/chat/TroubleshootProgress.vue')['default']
VanButton: typeof import('vant/es')['Button']
VanCell: typeof import('vant/es')['Cell']
VanCellGroup: typeof import('vant/es')['CellGroup']
VanConfigProvider: typeof import('vant/es')['ConfigProvider']
VanDialog: typeof import('vant/es')['Dialog']
VanEmpty: typeof import('vant/es')['Empty']
VanField: typeof import('vant/es')['Field']
VanIcon: typeof import('vant/es')['Icon']
VanLoading: typeof import('vant/es')['Loading']
VanNavBar: typeof import('vant/es')['NavBar']
VanPopup: typeof import('vant/es')['Popup']
VanRate: typeof import('vant/es')['Rate']
VanStep: typeof import('vant/es')['Step']
VanSteps: typeof import('vant/es')['Steps']
VanTag: typeof import('vant/es')['Tag']
}
}