Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/hir_web into main
continuous-integration/drone/push Build is passing Details

main
caiyiling 2024-11-25 13:27:51 +08:00
commit 21871f7948
2 changed files with 6 additions and 6 deletions

View File

@ -78,7 +78,7 @@
</el-form-item>
<!-- 操作人 -->
<el-form-item :label="$t('trials:auditRecord:table:operator')">
<el-input v-model="searchData.CreateUserRealName" style="width:120px" />
<el-input v-model="searchData.CreateUserName" style="width:120px" />
</el-form-item>
<!-- 角色 -->
<el-form-item :label="$t('trials:auditRecord:table:role')">
@ -845,7 +845,7 @@ const searchDataDefault = () => {
TrialReadingCriterionId: null,
RoleName:null,
TaskName: '',
CreateUserRealName: ''
CreateUserName: ''
}
}
export default {

View File

@ -163,7 +163,7 @@
<!--下载图像数量--->
<el-table-column
:label="$t('trials:downloadRecord:table:VisitImageFileCount')"
prop="VisitImageFileCount"
prop="ImageCount"
min-width="90"
show-overflow-tooltip
sortable="custom"
@ -171,15 +171,15 @@
<!--下载图像大小--->
<el-table-column
:label="$t('trials:downloadRecord:table:VisitImageFileSize')"
prop="VisitImageZipSize"
prop="ImageSize"
min-width="90"
show-overflow-tooltip
sortable="custom"
>
<template slot-scope="scope">
<span>{{
scope.row.VisitImageZipSize && scope.row.VisitImageZipSize > 0
? `${(scope.row.VisitImageZipSize / 1024 / 1024).toFixed(2)}MB`
scope.row.ImageSize && scope.row.ImageSize > 0
? `${(scope.row.ImageSize / 1024 / 1024).toFixed(2)}MB`
: 0
}}</span>
</template>