阅片期添加临床数据是否完备字段

uat_us
caiyiling 2024-03-28 11:19:15 +08:00
parent 0e5d1fb718
commit 7e1165888b
1 changed files with 16 additions and 1 deletions

View File

@ -54,6 +54,17 @@
clearable
/>
</el-form-item>
<el-form-item :label="$t('trials:readingPeriod:table:completeClinicalData')">
<el-select v-model="searchData.CompleteClinicalData" clearable style="width:120px">
<el-option
v-for="item of $d.CompleteClinicalDataEnum"
:key="item.value"
:value="item.value"
:label="item.label"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleSearch">
{{ $t('common:button:search') }}
@ -174,6 +185,9 @@
<div style="display: flex;justify-content: space-between;width: 100%">
<!-- 临床资料 -->
<div>
<el-tooltip v-if="scope.row.Data[i-1].CompleteClinicalData!==1" class="item" effect="dark" :content="$t('trials:readingPeriod:table:clinicalDataNotComplete')" placement="bottom">
<i class="el-icon-warning" style="color:red" />
</el-tooltip>
{{ $t('trials:readingPeriod:table:clinicalInfo2') }}
</div>
<el-link type="danger" v-if="(scope.row.Data[i-1].IsVisit && otherInfo.IsExistsSubjectClinicalData && scope.row.Data[i-1].IsBaseLine) ||(scope.row.Data[i-1].IsVisit && otherInfo.IsExistsVisitClinicalData) || (!scope.row.Data[i-1].IsVisit && otherInfo.IsExistsReadingClinicalData && scope.row.Data[i-1].ModuleType === 3) || (!scope.row.Data[i-1].IsVisit && otherInfo.IsExistsOncologyReadClinicalData && scope.row.Data[i-1].ModuleType === 5)" @click="handleView(scope.row,scope.row.Data[i-1])">
@ -355,6 +369,7 @@ const searchDataDefault = () => {
ModuleType: null,
ReadingStatus: null,
Name: '',
CompleteClinicalData: '',
PageIndex: 1,
PageSize: 20
}