Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/hir_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
21871f7948
|
@ -78,7 +78,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 操作人 -->
|
<!-- 操作人 -->
|
||||||
<el-form-item :label="$t('trials:auditRecord:table:operator')">
|
<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>
|
||||||
<!-- 角色 -->
|
<!-- 角色 -->
|
||||||
<el-form-item :label="$t('trials:auditRecord:table:role')">
|
<el-form-item :label="$t('trials:auditRecord:table:role')">
|
||||||
|
@ -845,7 +845,7 @@ const searchDataDefault = () => {
|
||||||
TrialReadingCriterionId: null,
|
TrialReadingCriterionId: null,
|
||||||
RoleName:null,
|
RoleName:null,
|
||||||
TaskName: '',
|
TaskName: '',
|
||||||
CreateUserRealName: ''
|
CreateUserName: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -163,7 +163,7 @@
|
||||||
<!--下载图像数量--->
|
<!--下载图像数量--->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:label="$t('trials:downloadRecord:table:VisitImageFileCount')"
|
:label="$t('trials:downloadRecord:table:VisitImageFileCount')"
|
||||||
prop="VisitImageFileCount"
|
prop="ImageCount"
|
||||||
min-width="90"
|
min-width="90"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
sortable="custom"
|
sortable="custom"
|
||||||
|
@ -171,15 +171,15 @@
|
||||||
<!--下载图像大小--->
|
<!--下载图像大小--->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:label="$t('trials:downloadRecord:table:VisitImageFileSize')"
|
:label="$t('trials:downloadRecord:table:VisitImageFileSize')"
|
||||||
prop="VisitImageZipSize"
|
prop="ImageSize"
|
||||||
min-width="90"
|
min-width="90"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
sortable="custom"
|
sortable="custom"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{
|
<span>{{
|
||||||
scope.row.VisitImageZipSize && scope.row.VisitImageZipSize > 0
|
scope.row.ImageSize && scope.row.ImageSize > 0
|
||||||
? `${(scope.row.VisitImageZipSize / 1024 / 1024).toFixed(2)}MB`
|
? `${(scope.row.ImageSize / 1024 / 1024).toFixed(2)}MB`
|
||||||
: 0
|
: 0
|
||||||
}}</span>
|
}}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue