|
@@ -24,6 +24,10 @@ class TraditionalChineseMedicineConstitutionView
|
|
|
}
|
|
|
|
|
|
Widget buildContent(String key) {
|
|
|
+ String examData = "";
|
|
|
+ if (Get.arguments != null) {
|
|
|
+ examData = Get.arguments["examData"] ?? '';
|
|
|
+ }
|
|
|
return TCMConstitutionModule(
|
|
|
cardKey: key,
|
|
|
callBack: (key, templateCode, data) async {
|
|
@@ -37,6 +41,7 @@ class TraditionalChineseMedicineConstitutionView
|
|
|
|
|
|
return true;
|
|
|
},
|
|
|
+ examData: examData,
|
|
|
patientCode: Store.user.currentSelectPatientInfo?.code ??
|
|
|
Store.user.currentSelectRegisterPersonInfo?.physicalExamNumber ??
|
|
|
'',
|