质控dicom检查信息添加更新时间和上传时间
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
parent
fd67edcb0e
commit
1ef1d4f303
|
@ -98,6 +98,7 @@
|
|||
:data="studyList"
|
||||
:row-class-name="tableRowClassName"
|
||||
@selection-change="handleSelectionChangeDicom"
|
||||
:default-sort="{ prop: 'UploadedTime', order: 'descending' }"
|
||||
>
|
||||
<el-table-column type="selection" width="55"> </el-table-column>
|
||||
<!-- 检查编号 -->
|
||||
|
@ -212,6 +213,22 @@
|
|||
}}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 更新时间 -->
|
||||
<el-table-column
|
||||
prop="UpdateTime"
|
||||
:label="$t('trials:audit:table:seriesOfUpdateTime')"
|
||||
min-width="120"
|
||||
sortable
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<!-- 上传时间 -->
|
||||
<el-table-column
|
||||
prop="UploadedTime"
|
||||
:label="$t('trials:audit:table:seriesOfUploadedDate')"
|
||||
min-width="120"
|
||||
sortable
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column :label="$t('common:action:action')">
|
||||
<template slot-scope="scope">
|
||||
<!-- 预览 -->
|
||||
|
@ -294,17 +311,17 @@
|
|||
}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 上传时间 -->
|
||||
<el-table-column
|
||||
prop="CreateTime"
|
||||
:label="$t('trials:audit:table:seriesOfUploadedDate')"
|
||||
<!-- 更新时间 -->
|
||||
<el-table-column
|
||||
prop="UpdateTime"
|
||||
:label="$t('trials:audit:table:seriesOfUpdateTime')"
|
||||
sortable
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<!-- 上传时间 -->
|
||||
<el-table-column
|
||||
prop="UpdateTime"
|
||||
:label="$t('trials:audit:table:seriesOfUpdateTime')"
|
||||
prop="CreateTime"
|
||||
:label="$t('trials:audit:table:seriesOfUploadedDate')"
|
||||
sortable
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue