脾脏评估算法优化

uat_us
caiyiling 2024-04-12 13:59:00 +08:00
parent 3a69256a04
commit e7d799ceb5
1 changed files with 4 additions and 2 deletions

View File

@ -703,10 +703,11 @@ export default {
// 访130mm
//
status = '1'
} else if (this.spleenInfo.BaseLineSpleenLength > 130 && diffFromBaseline >= 10 && percentFormBaseline > 50) {
} else if (this.spleenInfo.BaseLineSpleenLength > 130 && diffFromBaseline >= 10 && percentFormBaseline > 50 && length > 130) {
// 1线 >130 mm
// 2线10 mm
// 3线>50
// 4>130 mm
//
status = '4'
} else if (this.spleenInfo.BaseLineSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130) {
@ -722,9 +723,10 @@ export default {
// 4>130 mm
//
status = '4'
} else if (this.spleenInfo.BaseLineState === '6' && percentFormBaseline < -50) {
} else if (this.spleenInfo.BaseLineState === '6' && percentFormBaseline < -50 && length > 130) {
// 1线
// 2线-50
// 3>130 mm
//
status = '2'
} else {