mRECISTD 新病灶,随访时,当长度<1cm,状态设置为疑似
continuous-integration/drone/push Build is running Details

main
wangxiaoshuang 2025-09-10 10:38:33 +08:00
parent 79a00f61c0
commit d3446833ce
1 changed files with 3 additions and 3 deletions

View File

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