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

uat_us
DESKTOP-6C3NK6N\WXS 2024-08-15 09:32:27 +08:00
parent a549341d3b
commit 8ad3eee2c2
1 changed files with 14 additions and 0 deletions

View File

@ -312,6 +312,20 @@
:label="$t('trials:uploadClinicalData:table:fileName')"
width="250"
/>
<!-- 文件大小 -->
<el-table-column
prop="Size"
:label="$t('trials:uploadClinicalData:table:fileSize')"
width="150"
>
<template slot-scope="scope">
<span>{{
scope.row.Size && scope.row.Size > 0
? `${(scope.row.Size / 1024 / 1024).toFixed(2)}MB`
: 0
}}</span>
</template>
</el-table-column>
<!-- 上传时间 -->
<el-table-column
prop="CreateTime"