1
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-11-21 17:55:14 +08:00
parent 7ce72608b4
commit f2e5f0810c
2 changed files with 5 additions and 5 deletions

View File

@ -209,7 +209,7 @@
<pullImage v-if="pullTrialsVisible" :visible.sync="pullTrialsVisible" :calledAeList="calledAeList"
:callingAeList="callingAeList" @getList="getList" />
<el-dialog title="" :visible.sync="RecordVisible" :fullscreen="true">
<downloadRecord :isSystem="true" />
<downloadRecord :isSystem="true" v-if="RecordVisible" />
</el-dialog>
</BaseContainer>
</template>

View File

@ -2,13 +2,13 @@
<BaseContainer>
<template slot="search-container">
<el-form :inline="true">
<el-form-item :label="$t('trials:downloadRecord:table:SubjectCode')" prop="SubjectCode">
<el-form-item :label="$t('trials:downloadRecord:table:SubjectCode')" prop="SubjectCode" v-if="!isSystem">
<el-input v-model="searchData.SubjectCode" size="small" clearable style="width: 120px" />
</el-form-item>
<el-form-item :label="$t('trials:downloadRecord:table:IP')" prop="IP">
<el-input v-model="searchData.IP" size="small" clearable style="width: 120px" />
</el-form-item>
<el-form-item :label="$t('trials:downloadRecord:table:VisitName')" prop="VisitName">
<el-form-item :label="$t('trials:downloadRecord:table:VisitName')" prop="VisitName" v-if="!isSystem">
<el-input v-model="searchData.VisitName" size="small" clearable style="width: 120px" />
</el-form-item>
<el-form-item :label="$t('trials:downloadRecord:table:Name')" prop="LoginUserName">
@ -44,14 +44,14 @@
<el-table-column type="index" width="50" />
<!--受试者-->
<el-table-column :label="$t('trials:downloadRecord:table:SubjectCode')" prop="SubjectCode" min-width="90"
show-overflow-tooltip sortable="custom">
show-overflow-tooltip sortable="custom" v-if="!isSystem">
</el-table-column>
<!--ip-->
<el-table-column :label="$t('trials:downloadRecord:table:IP')" prop="IP" min-width="90" show-overflow-tooltip
sortable="custom" />
<!--访视名-->
<el-table-column :label="$t('trials:downloadRecord:table:VisitName')" prop="VisitName" min-width="90"
show-overflow-tooltip sortable="custom" />
show-overflow-tooltip sortable="custom" v-if="!isSystem" />
<!--下载用户名称-->
<el-table-column :label="$t('trials:downloadRecord:table:DownloadUserName')" prop="DownloadUserName"
min-width="90" show-overflow-tooltip sortable="custom">