脾脏状态自动计算调整
parent
edfa41291b
commit
b461716195
|
@ -255,7 +255,7 @@ export default {
|
||||||
this.petctWindow = window.open(routeData.href, '_blank')
|
this.petctWindow = window.open(routeData.href, '_blank')
|
||||||
this.$emit('close')
|
this.$emit('close')
|
||||||
},
|
},
|
||||||
handleCancel(){
|
handleCancel() {
|
||||||
this.$emit('close')
|
this.$emit('close')
|
||||||
},
|
},
|
||||||
handleTaskIdChange(v) {
|
handleTaskIdChange(v) {
|
||||||
|
|
|
@ -647,14 +647,10 @@ export default {
|
||||||
if (this.isBaseLineTask) {
|
if (this.isBaseLineTask) {
|
||||||
// 直径≤130mm时,系统默认脾脏状态为“正常”
|
// 直径≤130mm时,系统默认脾脏状态为“正常”
|
||||||
if (length <= 130) {
|
if (length <= 130) {
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '1')
|
|
||||||
// this.calculateSpleenStatus = '1'
|
|
||||||
status = '1'
|
status = '1'
|
||||||
}
|
}
|
||||||
// 直径>130mm时,系统默认脾脏状态为“肿大”
|
// 直径>130mm时,系统默认脾脏状态为“肿大”
|
||||||
if (length > 130) {
|
if (length > 130) {
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '6')
|
|
||||||
// this.calculateSpleenStatus = '6'
|
|
||||||
status = '6'
|
status = '6'
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -664,21 +660,21 @@ export default {
|
||||||
if (this.spleenInfo.BaseLineSpleenLength) {
|
if (this.spleenInfo.BaseLineSpleenLength) {
|
||||||
percentFormBaseline = diffFromBaseline * 100 / (this.spleenInfo.BaseLineSpleenLength - 130)
|
percentFormBaseline = diffFromBaseline * 100 / (this.spleenInfo.BaseLineSpleenLength - 130)
|
||||||
}
|
}
|
||||||
if (this.spleenInfo.BaseLineSpleenLength > 130 && diffFromBaseline >= 10 && percentFormBaseline > 50) {
|
if (length <= 130) {
|
||||||
|
// 当前访视的垂直径≤130mm
|
||||||
|
// 系统默认脾脏状态为“正常”
|
||||||
|
status = '1'
|
||||||
|
} else if (this.spleenInfo.BaseLineSpleenLength > 130 && diffFromBaseline >= 10 && percentFormBaseline > 50) {
|
||||||
// 1、基线 垂直径>130 mm
|
// 1、基线 垂直径>130 mm
|
||||||
// 2、与基线相比脾垂直径变化值≥10 mm
|
// 2、与基线相比脾垂直径变化值≥10 mm
|
||||||
// 3、与基线相比脾肿大增加的百分比>50%
|
// 3、与基线相比脾肿大增加的百分比>50%
|
||||||
// 系统默认脾脏状态为“显著增大”
|
// 系统默认脾脏状态为“显著增大”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '4')
|
|
||||||
// this.calculateSpleenStatus = '4'
|
|
||||||
status = '4'
|
status = '4'
|
||||||
} else if (this.spleenInfo.BaseLineSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130) {
|
} else if (this.spleenInfo.BaseLineSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130) {
|
||||||
// 1、基线垂直径≤130mm
|
// 1、基线垂直径≤130mm
|
||||||
// 2、与基线相比脾垂直径变化值≥20 mm
|
// 2、与基线相比脾垂直径变化值≥20 mm
|
||||||
// 3、当前垂直径>130 mm
|
// 3、当前垂直径>130 mm
|
||||||
// 系统默认脾脏状态为“显著增大”
|
// 系统默认脾脏状态为“显著增大”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '4')
|
|
||||||
// this.calculateSpleenStatus = '4'
|
|
||||||
status = '4'
|
status = '4'
|
||||||
} else if (this.spleenInfo.BaseLineSpleenLength > 130 && this.spleenInfo.LowSpleenLength <= 130 && length - this.spleenInfo.LowSpleenLength >= 20 && length > 130) {
|
} else if (this.spleenInfo.BaseLineSpleenLength > 130 && this.spleenInfo.LowSpleenLength <= 130 && length - this.spleenInfo.LowSpleenLength >= 20 && length > 130) {
|
||||||
// 1、基线 垂直径>130 mm
|
// 1、基线 垂直径>130 mm
|
||||||
|
@ -686,25 +682,14 @@ export default {
|
||||||
// 3、与最低点相比脾脏垂直径的增加值≥20 mm
|
// 3、与最低点相比脾脏垂直径的增加值≥20 mm
|
||||||
// 4、当前垂直径>130 mm
|
// 4、当前垂直径>130 mm
|
||||||
// 系统默认脾脏状态为“显著增大”
|
// 系统默认脾脏状态为“显著增大”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '4')
|
|
||||||
// this.calculateSpleenStatus = '4'
|
|
||||||
status = '4'
|
status = '4'
|
||||||
} else if (length < 130) {
|
|
||||||
// 当前访视的垂直径≤130mm
|
|
||||||
// 系统默认脾脏状态为“正常”
|
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '1')
|
|
||||||
// this.calculateSpleenStatus = '1'
|
|
||||||
status = '1'
|
|
||||||
} else if (this.spleenInfo.BaseLineState === '6' && percentFormBaseline < -50) {
|
} else if (this.spleenInfo.BaseLineState === '6' && percentFormBaseline < -50) {
|
||||||
// 1、基线期 状态为“肿大”
|
// 1、基线期 状态为“肿大”
|
||||||
// 2、与基线相比脾肿大增加的百分比小于-50%
|
// 2、与基线相比脾肿大增加的百分比小于-50%
|
||||||
// 系统默认脾脏状态为“部分缓解”
|
// 系统默认脾脏状态为“部分缓解”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '2')
|
|
||||||
// this.calculateSpleenStatus = '2'
|
|
||||||
status = '2'
|
status = '2'
|
||||||
} else {
|
} else {
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '3')
|
// 系统默认脾脏状态为“稳定”
|
||||||
// this.calculateSpleenStatus = '3'
|
|
||||||
status = '3'
|
status = '3'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue