列表展示信息格式优化
parent
4fabe3fa14
commit
88cc255c56
|
@ -113,7 +113,7 @@
|
|||
<div style="display: flex;align-items: center">
|
||||
<div v-if="scope.row.Modalities">{{ scope.row.Modalities }}({{ scope.row.Count }}), </div>
|
||||
<div v-else style="color:#f44336;">N/A, </div>
|
||||
<div v-if="scope.row.Bodypart" style="margin:0 3px;">{{ getBodyPart(scope.row.Bodypart) }}, </div>
|
||||
<div v-if="scope.row.Bodypart" style="margin:0 3px;">{{ scope.row.Bodypart }}, </div>
|
||||
<div v-else style="color:#f44336;margin:0 3px;">N/A, </div>
|
||||
<div v-if="scope.row.StudyTime">{{ moment(scope.row.StudyTime).format('YYYY-MM-DD') }} </div>
|
||||
<div v-else style="color:#f44336;">N/A </div>
|
||||
|
|
|
@ -237,7 +237,7 @@
|
|||
<span v-else>{{ $t('trials:crcUpload:label:noneDicom') }}: {{ scope.row.NoneDicomStudyCount }}</span>
|
||||
</div>
|
||||
<span>
|
||||
{{ scope.row.IsBaseLine && otherInfo.ClinicalInformationTransmissionEnum > 0?[scope.row.DicomStudyCount,scope.row.NoneDicomStudyCount,scope.row.IsHaveClinicalData?'w/':'w/o'].join(','):[scope.row.DicomStudyCount,scope.row.NoneDicomStudyCount].join(', ') }}
|
||||
{{ scope.row.IsBaseLine && otherInfo.ClinicalInformationTransmissionEnum > 0?[scope.row.DicomStudyCount,scope.row.NoneDicomStudyCount,scope.row.IsHaveClinicalData?'w/':'w/o'].join(', '):[scope.row.DicomStudyCount,scope.row.NoneDicomStudyCount].join(', ') }}
|
||||
</span>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue