Commit 578571ed authored by songrui's avatar songrui

Merge branch 'chronic-master' of…

Merge branch 'chronic-master' of http://gitlab.yiboshi.com/nightkis1995/frontend-h5 into chronic-master
parents bd4b7db5 6bd12288
...@@ -526,12 +526,12 @@ export default { ...@@ -526,12 +526,12 @@ export default {
familyHistory.includes(3) || familyHistory.includes(4) || familyHistory.includes(5) || familyHistory.includes(6))) { familyHistory.includes(3) || familyHistory.includes(4) || familyHistory.includes(5) || familyHistory.includes(6))) {
list.push(4) list.push(4)
} }
if (((pressureOneSbp >= 130 && pressureOneSbp <= 139) || (pressureTwoSbp >=130 && pressureTwoSbp <= 139))&& if ((pressureOneSbp >= 130 || pressureTwoSbp >= 130) ||
((pressureOneDbp >= 85 && pressureOneDbp <= 89) || (pressureTwoDbp >=85 && pressureTwoDbp <= 89) ) (pressureOneDbp >= 85 || pressureTwoDbp >= 85)
) { ) {
list.push(5) list.push(5)
} }
if (fastingGlucose>=6.1 && fastingGlucose < 7) { if (fastingGlucose >= 6.1) {
list.push(6) list.push(6)
} }
if (ldlCholesterin >= 3.4) { if (ldlCholesterin >= 3.4) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment