Compare commits

..

No commits in common. "f5cdce04e457fe7e00f5411cea7fc185cf2f25ef" and "76bc1bac161186ccf1d85cf61251a12dc9acf4c3" have entirely different histories.

1 changed files with 4 additions and 4 deletions

View File

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