mrecist病灶状态判断条件修改
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-09-16 18:06:30 +08:00
parent 407b752e0c
commit a85503c173
1 changed files with 8 additions and 11 deletions

View File

@ -606,19 +606,16 @@ export default {
var lesionOrgan = this.getQuestionVal(5) var lesionOrgan = this.getQuestionVal(5)
var IntrahepaticLesion = this.getQuestionVal(21) var IntrahepaticLesion = this.getQuestionVal(21)
// ,1cm0<1cm1 // ,1cm0<1cm1
if (this.isCurrentTaskAdd === 'True' || this.isCurrentTaskAdd === 'False') { if ((lesionOrgan === '肝脏' || lesionOrgan === 'Liver') && IntrahepaticLesion && this.questionForm.LesionType == 2) {
if ((lesionOrgan === '肝脏' || lesionOrgan === 'Liver') && IntrahepaticLesion) { if (!this.isBaseLineTask && (measureData.type === 'Length' && lesionLength >= 10)) {
if (!this.isBaseLineTask && (measureData.type === 'Length' && lesionLength >= 10)) { const stateId = this.getQuestionId(7)
const stateId = this.getQuestionId(7) this.$set(this.questionForm, stateId, 0)
this.$set(this.questionForm, stateId, 0) }
} if (!this.isBaseLineTask && (measureData.type === 'Length' && lesionLength < 10)) {
if (!this.isBaseLineTask && (measureData.type === 'Length' && lesionLength < 10)) { const stateId = this.getQuestionId(7)
const stateId = this.getQuestionId(7) this.$set(this.questionForm, stateId, 1)
this.$set(this.questionForm, stateId, 1)
}
} }
} }
//
if (!(this.isCurrentTaskAdd === 'True') && this.questionForm.LesionType != 2) { if (!(this.isCurrentTaskAdd === 'True') && this.questionForm.LesionType != 2) {
// 线>=10mm>=10mm // 线>=10mm>=10mm
if (!this.isBaseLineTask && ((measureData.type === 'Length' && lesionLength >= 10) || (measureData.type === 'Bidirectional' && lesionShort >= 10))) { if (!this.isBaseLineTask && ((measureData.type === 'Length' && lesionLength >= 10) || (measureData.type === 'Bidirectional' && lesionShort >= 10))) {