From 61fe829d1a7b8a7407e172708262f1627d58b669 Mon Sep 17 00:00:00 2001 From: xiezhijun <15270898033@163.com> Date: Sat, 26 Jun 2021 18:33:52 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=9C=88=E7=BB=8F=E4=B8=8D=E8=B0=83?= =?UTF-8?q?=E9=97=AE=E5=8D=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/SysCustomerHealthyExtended.java | 4 + .../SysCustomerHealthyExtendedMapper.xml | 6 +- .../custom/SysCustomerHealthyMapper.xml | 2 +- .../src/components/HealthyForm/Form1.vue | 5 +- .../src/components/HealthyForm/Form3.vue | 6 +- .../src/components/HealthyForm/Form4.vue | 6 +- .../src/components/HealthyForm/Form5.vue | 6 +- .../src/components/HealthyForm/Form6.vue | 6 +- .../src/components/HealthyForm/Form7.vue | 6 +- .../src/components/HealthyForm/Form8.vue | 5 +- .../src/components/HealthyForm/Form9.vue | 6 +- .../components/HealthyForm/FormExtended.vue | 196 ++++++++- .../components/PhysicalSignsDialog/index.vue | 197 +-------- .../components/PhysicalSignsEdit/index.vue | 15 +- .../PhysicalSignsGuidance/index.vue | 6 +- stdiet-ui/src/utils/healthyData.js | 398 +++++++++++++++++- .../custom/subhealthy/investigation/index.vue | 64 ++- 17 files changed, 699 insertions(+), 235 deletions(-) diff --git a/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysCustomerHealthyExtended.java b/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysCustomerHealthyExtended.java index aceb2abb6..90c66cd26 100644 --- a/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysCustomerHealthyExtended.java +++ b/stdiet-custom/src/main/java/com/stdiet/custom/domain/SysCustomerHealthyExtended.java @@ -57,6 +57,10 @@ public class SysCustomerHealthyExtended extends BaseEntity @Excel(name = "焦虑状态评估") private String anxietyStateMessage; + /** 月经不调、多囊信息 */ + @Excel(name = "月经不调、多囊信息") + private String menstruationMessage; + /** 删除标识 0未删除 1已删除 */ private Long delFlag; } \ No newline at end of file diff --git a/stdiet-custom/src/main/resources/mapper/custom/SysCustomerHealthyExtendedMapper.xml b/stdiet-custom/src/main/resources/mapper/custom/SysCustomerHealthyExtendedMapper.xml index 472c1099e..eac78d073 100644 --- a/stdiet-custom/src/main/resources/mapper/custom/SysCustomerHealthyExtendedMapper.xml +++ b/stdiet-custom/src/main/resources/mapper/custom/SysCustomerHealthyExtendedMapper.xml @@ -15,11 +15,12 @@ + - select id, healthy_id, waist, hipline, eat_fruits_message, long_eat_drug_message, blood_sugar_message, depressed_state_message, blood_pressure_message, anxiety_state_message, del_flag from sys_customer_healthy_extended + select id, healthy_id, waist, hipline, eat_fruits_message, long_eat_drug_message, blood_sugar_message, depressed_state_message, blood_pressure_message, anxiety_state_message, menstruation_messag,del_flag from sys_customer_healthy_extended - select id, healthy_id, waist, hipline, eat_fruits_message, long_eat_drug_message, blood_sugar_message, depressed_state_message, blood_pressure_message, anxiety_state_message from sys_customer_healthy_extended where del_flag = 0 and healthy_id = #{id} limit 1 + select id, healthy_id, waist, hipline, eat_fruits_message, long_eat_drug_message, blood_sugar_message, depressed_state_message, blood_pressure_message, anxiety_state_message,menstruation_message from sys_customer_healthy_extended where del_flag = 0 and healthy_id = #{id} limit 1 \ No newline at end of file diff --git a/stdiet-ui/src/components/HealthyForm/Form1.vue b/stdiet-ui/src/components/HealthyForm/Form1.vue index 165015ee8..959ffc575 100644 --- a/stdiet-ui/src/components/HealthyForm/Form1.vue +++ b/stdiet-ui/src/components/HealthyForm/Form1.vue @@ -1,6 +1,6 @@