1
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-10-21 16:09:39 +08:00
parent 19d472bfb3
commit 06b505544b
1 changed files with 6 additions and 2 deletions

View File

@ -145,7 +145,8 @@
<span v-else>{{ $fd(scope.row.DictionaryCode, scope.row.Answers[task.VisitTaskId]) }}</span>
</template>
<template v-else-if="scope.row.QuestionType === 13 || scope.row.QuestionType === 42 || scope.row.QuestionType === 39">
<template
v-else-if="scope.row.QuestionType === 13 || scope.row.QuestionType === 42 || scope.row.QuestionType === 39">
<el-tooltip v-if="getAnswerInfo(scope.row.Answer, task.VisitTaskId, 'IsGlobalChange')"
:content="`${$t('trials:reading:warnning:msg55')}${$fd(scope.row.DictionaryCode, getAnswerInfo(scope.row.Answer, task.VisitTaskId, 'GlobalChangeAnswer'))}`"
placement="top" effect="light">
@ -813,9 +814,12 @@ export default {
getWarningText() {
var sysRes = ''
var curRes = ''
if (this.CriterionType === 2 || this.CriterionType === 18) {
if (this.CriterionType === 2) {
sysRes = this.$fd('ImagingOverallAssessment_Lugano', this.tumorEvaluate)
curRes = this.$fd('ImagingOverallAssessment_Lugano', this.currentEvaluateResult)
} else if (this.CriterionType === 18) {
sysRes = this.$fd('CT-MRIOverallAssessment', this.tumorEvaluate)
curRes = this.$fd('CT-MRIOverallAssessment', this.currentEvaluateResult)
} else {
sysRes = this.$fd('OverallAssessment', this.tumorEvaluate)
curRes = this.$fd('OverallAssessment', this.currentEvaluateResult)