Commit ec6aceed authored by gengchunlei's avatar gengchunlei

慢综 居民端初筛判断规则调整

parent 2050cd63
......@@ -519,12 +519,12 @@ export default {
familyHistory.includes(3) || familyHistory.includes(4) || familyHistory.includes(5) || familyHistory.includes(6))) {
list.push(4)
}
if (((pressureOneSbp >= 130 && pressureOneSbp <= 139) || (pressureTwoSbp >=130 && pressureTwoSbp <= 139))&&
((pressureOneDbp >= 85 && pressureOneDbp <= 89) || (pressureTwoDbp >=85 && pressureTwoDbp <= 89) )
if ((pressureOneSbp >= 130 || pressureTwoSbp >= 130) ||
(pressureOneDbp >= 85 || pressureTwoDbp >= 85)
) {
list.push(5)
}
if (fastingGlucose>=6.1 && fastingGlucose < 7) {
if (fastingGlucose >= 6.1) {
list.push(6)
}
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