退回历史列表数据缺失修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
5bb0479f45
commit
d0f2854b1c
|
@ -35,7 +35,7 @@
|
|||
/>
|
||||
</el-form-item>
|
||||
<!-- 患者姓名 -->
|
||||
<el-form-item :label="$t('trials:uploadDicomList:table:patientName')">
|
||||
<el-form-item :label="$t('trials:rereadTask:table:patientName')">
|
||||
<el-input
|
||||
v-model="searchData.PatientName"
|
||||
style="width: 140px"
|
||||
|
@ -169,7 +169,7 @@
|
|||
<el-table-column type="index" width="40" align="left" />
|
||||
<!-- 受试者编号 -->
|
||||
<el-table-column
|
||||
prop="SubjectCode"
|
||||
prop="OriginalReReadingTask.SubjectCode"
|
||||
min-width="100"
|
||||
:label="$t('trials:reviewTrack:table:subjectCode')"
|
||||
show-overflow-tooltip
|
||||
|
@ -184,11 +184,12 @@
|
|||
>
|
||||
<template slot-scope="scope">
|
||||
<span
|
||||
v-for="(item, index) in scope.row.PatientList"
|
||||
v-for="(item, index) in scope.row.OriginalReReadingTask
|
||||
.PatientList"
|
||||
:key="`${index}${item.PatientId}`"
|
||||
>
|
||||
{{
|
||||
index === scope.row.PatientList.length - 1
|
||||
index === scope.row.OriginalReReadingTask.PatientList.length - 1
|
||||
? item.PatientIdStr
|
||||
: `${item.PatientIdStr}, `
|
||||
}}
|
||||
|
@ -197,9 +198,9 @@
|
|||
</el-table-column>
|
||||
<!-- 患者姓名 -->
|
||||
<el-table-column
|
||||
prop="SubjectShortName"
|
||||
prop="OriginalReReadingTask.SubjectShortName"
|
||||
min-width="100"
|
||||
:label="$t('trials:uploadDicomList:table:patientName')"
|
||||
:label="$t('trials:rereadTask:table:patientName')"
|
||||
show-overflow-tooltip
|
||||
sortable="custom"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue