1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
19d472bfb3
commit
06b505544b
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue