Compare commits

..

3 Commits

Author SHA1 Message Date
wangxiaoshuang bc34ed5c25 Merge branch 'uat'
continuous-integration/drone/push Build is passing Details
2025-03-05 10:58:20 +08:00
wangxiaoshuang 1ef1d4f303 质控dicom检查信息添加更新时间和上传时间
continuous-integration/drone/push Build encountered an error Details
2025-03-05 10:50:47 +08:00
wangxiaoshuang fd67edcb0e dicom列表时间顺序调换
continuous-integration/drone/push Build encountered an error Details
2025-03-05 10:14:06 +08:00
4 changed files with 47 additions and 30 deletions

View File

@ -108,14 +108,6 @@
{{ moment(scope.row.StudyTime).format('YYYY-MM-DD') }}
</template>
</el-table-column>
<!-- 上传时间 -->
<el-table-column
prop="UploadedTime"
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
sortable
min-width="120"
show-overflow-tooltip
/>
<!-- 更新时间 -->
<el-table-column
prop="UpdateTime"
@ -124,6 +116,14 @@
show-overflow-tooltip
sortable
/>
<!-- 上传时间 -->
<el-table-column
prop="UploadedTime"
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
sortable
min-width="120"
show-overflow-tooltip
/>
<el-table-column
:label="$t('common:action:action')"
min-width="100"

View File

@ -152,14 +152,6 @@
}}
</template>
</el-table-column>
<!-- 上传时间 -->
<el-table-column
prop="UploadedTime"
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
min-width="120"
show-overflow-tooltip
sortable
/>
<!-- 更新时间 -->
<el-table-column
prop="UpdateTime"
@ -168,6 +160,14 @@
show-overflow-tooltip
sortable
/>
<!-- 上传时间 -->
<el-table-column
prop="UploadedTime"
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
min-width="120"
show-overflow-tooltip
sortable
/>
<el-table-column
:label="$t('common:action:action')"
min-width="260"

View File

@ -106,14 +106,6 @@
{{ moment(scope.row.StudyTime).format('YYYY-MM-DD') }}
</template>
</el-table-column>
<!-- 上传时间 -->
<el-table-column
prop="UploadedTime"
:label="$t('trials:audit:table:studyUploadTime')"
min-width="80"
show-overflow-tooltip
sortable
/>
<!-- 更新时间 -->
<el-table-column
prop="UpdateTime"
@ -122,6 +114,14 @@
show-overflow-tooltip
sortable
/>
<!-- 上传时间 -->
<el-table-column
prop="UploadedTime"
:label="$t('trials:audit:table:studyUploadTime')"
min-width="80"
show-overflow-tooltip
sortable
/>
<el-table-column
:label="$t('common:action:action')"
min-width="100"

View File

@ -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
/>