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