初始化上传医疗项目到 medical-mall

This commit is contained in:
2026-04-10 09:03:21 +08:00
parent ca8794ea3a
commit ce124e7119
421 changed files with 15139 additions and 2363 deletions

View File

@@ -1,4 +1,4 @@
<!-- 商家端 - 聊天页面 -->
<!-- 机构端 - 咊询聊天页面 -->
<template>
<view class="chat-page">
<!-- 聊天头部 -->
@@ -9,7 +9,7 @@
<view class="header-info">
<view class="header-info-text-wrapper">
<text class="chat-title">{{ chatTitle }}</text>
<text class="chat-status">在线</text>
<text class="chat-status">在线服务中</text>
</view>
</view>
<view class="header-actions">
@@ -28,9 +28,9 @@
:show-scrollbar="false"
>
<view class="chat-messages">
<!-- 系统消息 -->
<view class="message-item system">
<text class="system-text">已接入客户对话</text>
<!-- 系统提示 -->
<view class="message-item system">
<text class="system-text">已接入用户咊询对话AI问诊仅为参考不构成诊断依据</text>
</view>
<!-- 消息列表 -->
@@ -87,7 +87,7 @@
<input
class="message-input"
v-model="inputText"
placeholder="请输入消息..."
placeholder="请输入咊询内容..."
:focus="inputFocus"
@confirm="sendMessage"
confirm-type="send"
@@ -141,7 +141,7 @@
return {
sessionId: '',
chatUserId: '',
chatTitle: '客户',
chatTitle: '用户咊询',
inputText: '',
chatMessages: [] as ChatMessageType[],
scrollToView: '',