diff --git a/components/AssistantConsultationShell.vue b/components/AssistantConsultationShell.vue
index a3b3c38..a48f2fc 100644
--- a/components/AssistantConsultationShell.vue
+++ b/components/AssistantConsultationShell.vue
@@ -111,6 +111,30 @@
+
+
+ 适用症/症状
+ {{ parsedContent.illness_info }}
+
+
+ 补充信息
+ {{ parsedContent.supplement }}
+
请在挂号后的用药确认页完成选择,此处不可更改
@@ -221,7 +229,7 @@
diff --git a/subPackages/doctor/components/FollowUpDrugDrawer.vue b/subPackages/doctor/components/FollowUpDrugDrawer.vue
index 18b09b7..115ce98 100644
--- a/subPackages/doctor/components/FollowUpDrugDrawer.vue
+++ b/subPackages/doctor/components/FollowUpDrugDrawer.vue
@@ -260,6 +260,9 @@ export default {
id,
drug_name: meta.drug_name || '',
quantity: q,
+ // 适用症随选药带入,复诊助手按药出题用
+ indications: meta.indications || '',
+ indications_array: Array.isArray(meta.indications_array) ? meta.indications_array : [],
});
}
}
diff --git a/subPackages/follow-up/medication-info.vue b/subPackages/follow-up/medication-info.vue
index 390a29a..3054ee6 100644
--- a/subPackages/follow-up/medication-info.vue
+++ b/subPackages/follow-up/medication-info.vue
@@ -17,12 +17,32 @@
:show-question-buttons="postRegisterStep === 'await_answer'"
:current-question="postRegisterCurrentQuestion"
:current-question-answers="postRegisterQuestionAnswers"
+ :answer-mode="postRegisterAnswerMode"
+ :custom-footer-active="postRegisterStep === 'await_supplement'"
:is-submitting="postRegisterSubmitting"
:show-waiting="postRegisterWaiting"
@back="handlePostRegisterBack"
@answer="onPostRegisterShellAnswer"
@view-agreement="viewPostRegisterAgreement"
- />
+ >
+
+
+
@@ -116,7 +136,7 @@