|
@@ -53,72 +53,72 @@ class FunctionsPanel extends GetView<PatientDetailController> {
|
|
|
crossAxisCount: 4,
|
|
|
mainAxisSpacing: 5,
|
|
|
crossAxisSpacing: 12,
|
|
|
- childAspectRatio: 1,
|
|
|
+ childAspectRatio: kIsWeb ? 1.3 : 1,
|
|
|
),
|
|
|
children: [
|
|
|
FunctionButton(
|
|
|
label: "个人基本信息",
|
|
|
- icon: _buildImgIcon("档案.png"),
|
|
|
+ icon: _buildImgIcon("record.png"),
|
|
|
onTap: controller.gotoInfo,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "精神障碍补充表",
|
|
|
- icon: _buildImgIcon("严重精神障碍补充表.png"),
|
|
|
+ icon: _buildImgIcon("severeMentalDisorderSupplementForm.png"),
|
|
|
onTap: controller.gotoMentalDisorderInfo,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "体检记录",
|
|
|
- icon: _buildImgIcon("体检记录.png"),
|
|
|
+ icon: _buildImgIcon("physicalExamRecord.png"),
|
|
|
onTap: controller.gotoHealthCheckRecord,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "健康检测记录",
|
|
|
- icon: _buildImgIcon("诊疗.png"),
|
|
|
+ icon: _buildImgIcon("diagnosisTreatment.png"),
|
|
|
onTap: controller.gotoExamRecord,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "中医体质记录",
|
|
|
- icon: _buildImgIcon("中医体质.png"),
|
|
|
+ icon: _buildImgIcon("traditionalChineseMedicineConstitution.png"),
|
|
|
onTap: controller.gotoTraditionalChineseMedicineConsitutionRecord,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "高血压随访",
|
|
|
- icon: _buildImgIcon("高血压随访.png"),
|
|
|
+ icon: _buildImgIcon("hypertensionFollowUp.png"),
|
|
|
onTap: controller.gotoHypertensionRecord,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "医生签约",
|
|
|
- icon: _buildImgIcon("签约.png"),
|
|
|
+ icon: _buildImgIcon("signContract.png"),
|
|
|
onTap: controller.gotoContractRecords,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "2型糖尿病随访",
|
|
|
- icon: _buildImgIcon("2型糖尿病随访.png"),
|
|
|
+ icon: _buildImgIcon("type2DiabetesFollowUp.png"),
|
|
|
onTap: controller.gotoDiabetesRecord,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "老年人自理评估",
|
|
|
- icon: _buildImgIcon("自理能力评估.png"),
|
|
|
+ icon: _buildImgIcon("selfCareAssessment.png"),
|
|
|
onTap: controller.gotoSelfCareAbilityAssessment,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "孕产妇健康管理",
|
|
|
- icon: _buildImgIcon("孕产妇健康管理.png"),
|
|
|
+ icon: _buildImgIcon("maternalHealthManagement.png"),
|
|
|
onTap: controller.gotoMaternalHealthManagement,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "精神障碍随访",
|
|
|
- icon: _buildImgIcon("严重精神障碍随访.png"),
|
|
|
+ icon: _buildImgIcon("severeMentalDisorderFollowUp.png"),
|
|
|
onTap: controller.gotoMentalDisorderRecord,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "儿童健康管理",
|
|
|
- icon: _buildImgIcon("儿童健康管理.png"),
|
|
|
+ icon: _buildImgIcon("pediatricHealthManagement.png"),
|
|
|
onTap: controller.gotoChildHealth,
|
|
|
),
|
|
|
FunctionButton(
|
|
|
label: "肺结核健康管理",
|
|
|
- icon: _buildImgIcon("肺结核健康管理.png"),
|
|
|
+ icon: _buildImgIcon("tuberculosisHealthManagement.png"),
|
|
|
onTap: controller.gototuberculosisRecord,
|
|
|
),
|
|
|
],
|