diff --git a/apps/web-antd/src/store/prescription.ts b/apps/web-antd/src/store/prescription.ts
index 29c8b214..891682e3 100644
--- a/apps/web-antd/src/store/prescription.ts
+++ b/apps/web-antd/src/store/prescription.ts
@@ -742,10 +742,6 @@ export const usePrescriptionStore = defineStore('prescription', () => {
customSendMode: number = 0,
customStoreId: number | null = null,
) => {
- // #region agent log
- fetch('http://127.0.0.1:7242/ingest/3cda25fa-2f46-4a02-889c-2ffb76bc49fe',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({location:'prescription.ts:sendPrescription:entry',message:'sendPrescription接收的参数',data:{customSendMode:customSendMode,customStoreId:customStoreId,doctorSecondSignValue:doctorSecondSignValue},timestamp:Date.now(),sessionId:'debug-session',hypothesisId:'D'})}).catch(()=>{});
- // #endregion
-
if (currentDrugs.value.length === 0) {
message.error('请选择药品');
return false;
@@ -810,9 +806,6 @@ export const usePrescriptionStore = defineStore('prescription', () => {
send_mode: customSendMode,
custom_store_id: customSendMode === 1 ? customStoreId : null,
}).then((res) => {
- // #region agent log
- fetch('http://127.0.0.1:7242/ingest/3cda25fa-2f46-4a02-889c-2ffb76bc49fe',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({location:'prescription.ts:sendPrescription:afterAPI',message:'API请求成功后',data:{send_mode:customSendMode,custom_store_id:customSendMode === 1 ? customStoreId : null,res:res},timestamp:Date.now(),sessionId:'debug-session',hypothesisId:'D'})}).catch(()=>{});
- // #endregion
message.success('处方已发送');
sendMessage({
roomId: chatStore.currentFriend.room_id,
diff --git a/apps/web-antd/src/views/business/chat/components/ChatArea.vue b/apps/web-antd/src/views/business/chat/components/ChatArea.vue
index f848c3b5..4a48f7e1 100644
--- a/apps/web-antd/src/views/business/chat/components/ChatArea.vue
+++ b/apps/web-antd/src/views/business/chat/components/ChatArea.vue
@@ -13,6 +13,7 @@ const props = defineProps({
const emit = defineEmits([
// ... existing emits
'openPrescription',
+ 'end-consultation-success',
]);
// 开方功能触发函数
@@ -20,6 +21,11 @@ const handleOpenPrescription = (registerId) => {
emit('openPrescription', registerId);
};
+// 结束接诊成功处理函数
+const handleEndConsultationSuccess = () => {
+ emit('end-consultation-success');
+};
+
// ... rest of the component
@@ -32,6 +38,9 @@ const handleOpenPrescription = (registerId) => {
已选择文件:{{ selectedFile?.name }}
++ 文件已准备就绪,点击确认按钮开始上传 +
++ +
+点击或拖动文件到此区域进行选择
++ 支持单个上传,xlsx格式文件。选择文件后需要点击确认按钮进行上传。 +
+已选择文件:{{ selectedFile?.name }}
++ 文件已准备就绪,点击确认按钮开始上传 +
++ +
+点击或拖动文件到此区域进行选择
++ 支持单个上传,xlsx格式文件。选择文件后需要点击确认按钮进行上传。 +
+【{{ item }}】
diff --git a/apps/web-antd/src/views/doctor/online-consultation/components/PatientExperienceCard.vue b/apps/web-antd/src/views/doctor/online-consultation/components/PatientExperienceCard.vue index 94849bcf..f68255a7 100644 --- a/apps/web-antd/src/views/doctor/online-consultation/components/PatientExperienceCard.vue +++ b/apps/web-antd/src/views/doctor/online-consultation/components/PatientExperienceCard.vue @@ -1,6 +1,6 @@ -