影像检查排序、字符集问题
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
parent
83b6c9f2cc
commit
821475b7d6
|
@ -9,9 +9,9 @@
|
||||||
<div v-for="(study, i) in studyList" :key="study.CodeView">
|
<div v-for="(study, i) in studyList" :key="study.CodeView">
|
||||||
<div class="study-desc">
|
<div class="study-desc">
|
||||||
<span>{{ study.CodeView }}</span>
|
<span>{{ study.CodeView }}</span>
|
||||||
<span v-if="OtherInfo.IsShowStudyName" style="margin-left: 5px">{{
|
<span v-if="OtherInfo.IsShowStudyName" style="margin-left: 5px">
|
||||||
study.StudyName
|
{{ study.StudyName }}
|
||||||
}}</span>
|
</span>
|
||||||
<span style="margin: 0 5px">{{ study.Modality }}</span>
|
<span style="margin: 0 5px">{{ study.Modality }}</span>
|
||||||
<span>{{ getBodyPart(study.BodyPart) }}</span>
|
<span>{{ getBodyPart(study.BodyPart) }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
height="300"
|
height="300"
|
||||||
:row-class-name="tableRowClassName"
|
:row-class-name="tableRowClassName"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
|
:default-sort="{ prop: 'UploadedTime', order: 'descending' }"
|
||||||
>
|
>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="!(data.SubmitState * 1 === 2) || data.IsQCConfirmedReupload"
|
v-if="!(data.SubmitState * 1 === 2) || data.IsQCConfirmedReupload"
|
||||||
|
@ -46,27 +47,32 @@
|
||||||
:label="$t('trials:uploadedDicoms:table:studyId')"
|
:label="$t('trials:uploadedDicoms:table:studyId')"
|
||||||
min-width="80"
|
min-width="80"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查名称 -->
|
<!-- 检查名称 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="relationInfo.IsShowStudyName"
|
v-if="relationInfo.IsShowStudyName"
|
||||||
prop="StudyName"
|
prop="StudyName"
|
||||||
:label="$t('trials:audit:table:StudyName')"
|
:label="$t('trials:audit:table:StudyName')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ModalityForEdit"
|
prop="ModalityForEdit"
|
||||||
:label="$t('trials:audit:table:modality')"
|
:label="$t('trials:audit:table:modality')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Modalities"
|
prop="Modalities"
|
||||||
:label="$t('trials:audit:table:modality1')"
|
:label="$t('trials:audit:table:modality1')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查部位 -->
|
<!-- 检查部位 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="BodyPartForEdit"
|
prop="BodyPartForEdit"
|
||||||
:label="$t('trials:uploadedDicoms:table:bodyPart')"
|
:label="$t('trials:uploadedDicoms:table:bodyPart')"
|
||||||
|
sortable
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
>
|
>
|
||||||
|
@ -78,6 +84,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="SeriesCount"
|
prop="SeriesCount"
|
||||||
:label="$t('trials:uploadedDicoms:table:seriesCount')"
|
:label="$t('trials:uploadedDicoms:table:seriesCount')"
|
||||||
|
sortable
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
|
@ -85,6 +92,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="InstanceCount"
|
prop="InstanceCount"
|
||||||
:label="$t('trials:uploadedDicoms:table:instanceCount')"
|
:label="$t('trials:uploadedDicoms:table:instanceCount')"
|
||||||
|
sortable
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
|
@ -92,6 +100,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="StudyTime"
|
prop="StudyTime"
|
||||||
:label="$t('trials:uploadedDicoms:table:studyDate')"
|
:label="$t('trials:uploadedDicoms:table:studyDate')"
|
||||||
|
sortable
|
||||||
min-width="120"
|
min-width="120"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
>
|
>
|
||||||
|
@ -103,9 +112,18 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="UploadedTime"
|
prop="UploadedTime"
|
||||||
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
|
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
|
||||||
min-width="80"
|
sortable
|
||||||
|
min-width="120"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
|
<!-- 更新时间 -->
|
||||||
|
<el-table-column
|
||||||
|
prop="UpdateTime"
|
||||||
|
:label="$t('trials:uploadedDicoms:table:UpdateTime')"
|
||||||
|
min-width="120"
|
||||||
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:label="$t('common:action:action')"
|
:label="$t('common:action:action')"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
:row-class-name="tableRowClassName"
|
:row-class-name="tableRowClassName"
|
||||||
max-height="250"
|
max-height="250"
|
||||||
@selection-change="handleUploadedSelectionChange"
|
@selection-change="handleUploadedSelectionChange"
|
||||||
|
:default-sort="{ prop: 'UploadedTime', order: 'descending' }"
|
||||||
>
|
>
|
||||||
<el-table-column type="selection" width="55" />
|
<el-table-column type="selection" width="55" />
|
||||||
<!-- 检查编号 -->
|
<!-- 检查编号 -->
|
||||||
|
@ -44,6 +45,7 @@
|
||||||
:label="$t('trials:uploadedDicoms:table:studyId')"
|
:label="$t('trials:uploadedDicoms:table:studyId')"
|
||||||
min-width="80"
|
min-width="80"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
|
@ -92,16 +94,19 @@
|
||||||
v-if="relationInfo.IsShowStudyName"
|
v-if="relationInfo.IsShowStudyName"
|
||||||
prop="StudyName"
|
prop="StudyName"
|
||||||
:label="$t('trials:audit:table:StudyName')"
|
:label="$t('trials:audit:table:StudyName')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ModalityForEdit"
|
prop="ModalityForEdit"
|
||||||
:label="$t('trials:audit:table:modality')"
|
:label="$t('trials:audit:table:modality')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查设备 -->
|
<!-- 检查设备 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Modalities"
|
prop="Modalities"
|
||||||
:label="$t('trials:audit:table:modality1')"
|
:label="$t('trials:audit:table:modality1')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查部位 -->
|
<!-- 检查部位 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -109,6 +114,7 @@
|
||||||
:label="$t('trials:uploadedDicoms:table:bodyPart')"
|
:label="$t('trials:uploadedDicoms:table:bodyPart')"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ getBodyPart(scope.row.BodyPartForEdit) }}
|
{{ getBodyPart(scope.row.BodyPartForEdit) }}
|
||||||
|
@ -120,6 +126,7 @@
|
||||||
:label="$t('trials:uploadedDicoms:table:seriesCount')"
|
:label="$t('trials:uploadedDicoms:table:seriesCount')"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 图像数量 -->
|
<!-- 图像数量 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -127,6 +134,7 @@
|
||||||
:label="$t('trials:uploadedDicoms:table:instanceCount')"
|
:label="$t('trials:uploadedDicoms:table:instanceCount')"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查日期 -->
|
<!-- 检查日期 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -134,6 +142,7 @@
|
||||||
:label="$t('trials:uploadedDicoms:table:studyDate')"
|
:label="$t('trials:uploadedDicoms:table:studyDate')"
|
||||||
min-width="120"
|
min-width="120"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{
|
{{
|
||||||
|
@ -147,8 +156,17 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="UploadedTime"
|
prop="UploadedTime"
|
||||||
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
|
:label="$t('trials:uploadedDicoms:table:uploadedTime')"
|
||||||
min-width="80"
|
min-width="120"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
|
/>
|
||||||
|
<!-- 更新时间 -->
|
||||||
|
<el-table-column
|
||||||
|
prop="UpdateTime"
|
||||||
|
:label="$t('trials:uploadedDicoms:table:UpdateTime')"
|
||||||
|
min-width="120"
|
||||||
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:label="$t('common:action:action')"
|
:label="$t('common:action:action')"
|
||||||
|
@ -1171,8 +1189,12 @@ export default {
|
||||||
patientNameElement ? patientNameElement.dataOffset : 0,
|
patientNameElement ? patientNameElement.dataOffset : 0,
|
||||||
patientNameElement ? patientNameElement.length : 0
|
patientNameElement ? patientNameElement.length : 0
|
||||||
)
|
)
|
||||||
|
// 解析dicom中字符集字段与解析库不一致 2025.03.04
|
||||||
|
let SpecificCharacterSet = data.string('x00080005')
|
||||||
|
? data.string('x00080005').replace('ISO IR', 'ISO_IR')
|
||||||
|
: ''
|
||||||
const patientNameStr = convertBytes(
|
const patientNameStr = convertBytes(
|
||||||
data.string('x00080005'),
|
SpecificCharacterSet,
|
||||||
patientNameBytes
|
patientNameBytes
|
||||||
)
|
)
|
||||||
scope.uploadQueues.push({
|
scope.uploadQueues.push({
|
||||||
|
@ -1280,8 +1302,11 @@ export default {
|
||||||
: 0,
|
: 0,
|
||||||
seriesDescriptionElement ? seriesDescriptionElement.length : 0
|
seriesDescriptionElement ? seriesDescriptionElement.length : 0
|
||||||
)
|
)
|
||||||
|
let SpecificCharacterSet = data.string('x00080005')
|
||||||
|
? data.string('x00080005').replace('ISO IR', 'ISO_IR')
|
||||||
|
: ''
|
||||||
const seriesDescriptionStr = convertBytes(
|
const seriesDescriptionStr = convertBytes(
|
||||||
data.string('x00080005'),
|
SpecificCharacterSet,
|
||||||
seriesDescriptionBytes
|
seriesDescriptionBytes
|
||||||
)
|
)
|
||||||
seriesItem = {
|
seriesItem = {
|
||||||
|
@ -1493,17 +1518,13 @@ export default {
|
||||||
${li.join('')}
|
${li.join('')}
|
||||||
</ol>
|
</ol>
|
||||||
</div>`
|
</div>`
|
||||||
this.$alert(
|
this.$alert(content, '', {
|
||||||
content,
|
confirmButtonText: this.$t(
|
||||||
this.$t('trials:uploadDicomList:label:prompt'),
|
'trials:uploadDicomList:label:confirm'
|
||||||
{
|
),
|
||||||
confirmButtonText: this.$t(
|
dangerouslyUseHTMLString: true,
|
||||||
'trials:uploadDicomList:label:confirm'
|
callback: (action) => {},
|
||||||
),
|
})
|
||||||
dangerouslyUseHTMLString: true,
|
|
||||||
callback: (action) => {},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
this.btnLoading = false
|
this.btnLoading = false
|
||||||
}
|
}
|
||||||
var results = []
|
var results = []
|
||||||
|
@ -1760,7 +1781,7 @@ export default {
|
||||||
o.imageColumns,
|
o.imageColumns,
|
||||||
o.imageRows
|
o.imageRows
|
||||||
)
|
)
|
||||||
let thumbnailPath = `/${params.trialId}/Image/${params.trialSiteId}/${params.subjectId}/${params.subjectVisitId}/${dicomInfo.studyUid}/${v.seriesUid}.png`
|
let thumbnailPath = `/${params.trialId}/Image/${params.subjectId}/${params.subjectVisitId}/${dicomInfo.studyUid}/${v.seriesUid}.png`
|
||||||
let OSSclient = scope.OSSclient
|
let OSSclient = scope.OSSclient
|
||||||
let seriesRes = await OSSclient.put(
|
let seriesRes = await OSSclient.put(
|
||||||
thumbnailPath,
|
thumbnailPath,
|
||||||
|
|
|
@ -23,27 +23,35 @@
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-table :data="nonDicomStudyList" style="width: 100%">
|
<el-table
|
||||||
|
:data="nonDicomStudyList"
|
||||||
|
style="width: 100%"
|
||||||
|
:default-sort="{ prop: 'CreateTime', order: 'descending' }"
|
||||||
|
>
|
||||||
<!-- 检查编号 -->
|
<!-- 检查编号 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="CodeView"
|
prop="CodeView"
|
||||||
:label="$t('trials:uploadNonDicoms:table:studyId')"
|
:label="$t('trials:uploadNonDicoms:table:studyId')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查名称 -->
|
<!-- 检查名称 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="relationInfo.IsShowStudyName"
|
v-if="relationInfo.IsShowStudyName"
|
||||||
prop="StudyName"
|
prop="StudyName"
|
||||||
:label="$t('trials:uploadNonDicoms:table:StudyName')"
|
:label="$t('trials:uploadNonDicoms:table:StudyName')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Modality"
|
prop="Modality"
|
||||||
:label="$t('trials:uploadNonDicoms:table:modality')"
|
:label="$t('trials:uploadNonDicoms:table:modality')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查部位 -->
|
<!-- 检查部位 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="BodyPart"
|
prop="BodyPart"
|
||||||
:label="$t('trials:uploadNonDicoms:table:bodyPart')"
|
:label="$t('trials:uploadNonDicoms:table:bodyPart')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ getBodyPart(scope.row.BodyPart) }}
|
{{ getBodyPart(scope.row.BodyPart) }}
|
||||||
|
@ -53,6 +61,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="FileCount"
|
prop="FileCount"
|
||||||
:label="$t('trials:uploadNonDicoms:table:files')"
|
:label="$t('trials:uploadNonDicoms:table:files')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-popover
|
<el-popover
|
||||||
|
@ -165,6 +174,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ImageDate"
|
prop="ImageDate"
|
||||||
:label="$t('trials:uploadNonDicoms:table:studyDate')"
|
:label="$t('trials:uploadNonDicoms:table:studyDate')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ moment(scope.row.ImageDate).format('YYYY-MM-DD') }}
|
{{ moment(scope.row.ImageDate).format('YYYY-MM-DD') }}
|
||||||
|
@ -174,6 +184,13 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="UpdateTime"
|
prop="UpdateTime"
|
||||||
:label="$t('trials:uploadNonDicoms:table:updateTime')"
|
:label="$t('trials:uploadNonDicoms:table:updateTime')"
|
||||||
|
sortable
|
||||||
|
/>
|
||||||
|
<!-- 创建时间 -->
|
||||||
|
<el-table-column
|
||||||
|
prop="CreateTime"
|
||||||
|
:label="$t('trials:uploadNonDicoms:table:CreateTime')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<el-table-column :label="$t('common:action:action')" min-width="200">
|
<el-table-column :label="$t('common:action:action')" min-width="200">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -887,7 +904,6 @@ export default {
|
||||||
// 扫描待上传文件
|
// 扫描待上传文件
|
||||||
beginScanFiles(e) {
|
beginScanFiles(e) {
|
||||||
var files = [...e.target.files]
|
var files = [...e.target.files]
|
||||||
console.log(files)
|
|
||||||
var sameFiles = []
|
var sameFiles = []
|
||||||
files.forEach((file) => {
|
files.forEach((file) => {
|
||||||
var extendName = file.name
|
var extendName = file.name
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
height="300"
|
height="300"
|
||||||
:row-class-name="tableRowClassName"
|
:row-class-name="tableRowClassName"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
|
:default-sort="{ prop: 'UploadedTime', order: 'descending' }"
|
||||||
>
|
>
|
||||||
<!-- 检查编号 -->
|
<!-- 检查编号 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -26,6 +27,7 @@
|
||||||
:label="$t('trials:audit:table:studyId')"
|
:label="$t('trials:audit:table:studyId')"
|
||||||
min-width="80"
|
min-width="80"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- <!– 检查类型 –>-->
|
<!-- <!– 检查类型 –>-->
|
||||||
<!-- <el-table-column-->
|
<!-- <el-table-column-->
|
||||||
|
@ -51,15 +53,18 @@
|
||||||
v-if="relationInfo.IsShowStudyName"
|
v-if="relationInfo.IsShowStudyName"
|
||||||
prop="StudyName"
|
prop="StudyName"
|
||||||
:label="$t('trials:audit:table:StudyName')"
|
:label="$t('trials:audit:table:StudyName')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ModalityForEdit"
|
prop="ModalityForEdit"
|
||||||
:label="$t('trials:audit:table:modality')"
|
:label="$t('trials:audit:table:modality')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Modalities"
|
prop="Modalities"
|
||||||
:label="$t('trials:audit:table:modality1')"
|
:label="$t('trials:audit:table:modality1')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查部位 -->
|
<!-- 检查部位 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -67,6 +72,7 @@
|
||||||
:label="$t('trials:uploadedDicoms:table:bodyPart')"
|
:label="$t('trials:uploadedDicoms:table:bodyPart')"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ getBodyPart(scope.row.BodyPartForEdit) }}
|
{{ getBodyPart(scope.row.BodyPartForEdit) }}
|
||||||
|
@ -78,6 +84,7 @@
|
||||||
:label="$t('trials:audit:table:seriesCount')"
|
:label="$t('trials:audit:table:seriesCount')"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 图像数量 -->
|
<!-- 图像数量 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -85,6 +92,7 @@
|
||||||
:label="$t('trials:audit:table:instanceCount')"
|
:label="$t('trials:audit:table:instanceCount')"
|
||||||
min-width="100"
|
min-width="100"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查日期 -->
|
<!-- 检查日期 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
@ -92,6 +100,7 @@
|
||||||
:label="$t('trials:audit:table:studyDate')"
|
:label="$t('trials:audit:table:studyDate')"
|
||||||
min-width="120"
|
min-width="120"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ moment(scope.row.StudyTime).format('YYYY-MM-DD') }}
|
{{ moment(scope.row.StudyTime).format('YYYY-MM-DD') }}
|
||||||
|
@ -103,6 +112,15 @@
|
||||||
:label="$t('trials:audit:table:studyUploadTime')"
|
:label="$t('trials:audit:table:studyUploadTime')"
|
||||||
min-width="80"
|
min-width="80"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
|
/>
|
||||||
|
<!-- 更新时间 -->
|
||||||
|
<el-table-column
|
||||||
|
prop="UpdateTime"
|
||||||
|
:label="$t('trials:audit:table:studyUpdateTime')"
|
||||||
|
min-width="80"
|
||||||
|
show-overflow-tooltip
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:label="$t('common:action:action')"
|
:label="$t('common:action:action')"
|
||||||
|
|
|
@ -104,12 +104,14 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="StudyCode"
|
prop="StudyCode"
|
||||||
:label="$t('trials:audit:table:studyId')"
|
:label="$t('trials:audit:table:studyId')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查名称 -->
|
<!-- 检查名称 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="StudyName"
|
prop="StudyName"
|
||||||
v-if="relationInfo.IsShowStudyName"
|
v-if="relationInfo.IsShowStudyName"
|
||||||
:label="$t('trials:audit:table:StudyName')"
|
:label="$t('trials:audit:table:StudyName')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
|
@ -131,16 +133,19 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ModalityForEdit"
|
prop="ModalityForEdit"
|
||||||
:label="$t('trials:audit:table:modality')"
|
:label="$t('trials:audit:table:modality')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Modalities"
|
prop="Modalities"
|
||||||
:label="$t('trials:audit:table:modality1')"
|
:label="$t('trials:audit:table:modality1')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查部位 -->
|
<!-- 检查部位 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="BodyPartForEdit"
|
prop="BodyPartForEdit"
|
||||||
:label="$t('trials:audit:table:bodyPart')"
|
:label="$t('trials:audit:table:bodyPart')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
|
@ -164,16 +169,19 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="SeriesCount"
|
prop="SeriesCount"
|
||||||
:label="$t('trials:audit:table:seriesCount')"
|
:label="$t('trials:audit:table:seriesCount')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 图像数量 -->
|
<!-- 图像数量 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="InstanceCount"
|
prop="InstanceCount"
|
||||||
:label="$t('trials:audit:table:instanceCount')"
|
:label="$t('trials:audit:table:instanceCount')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查日期 -->
|
<!-- 检查日期 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="StudyTime"
|
prop="StudyTime"
|
||||||
:label="$t('trials:audit:table:studyDate')"
|
:label="$t('trials:audit:table:studyDate')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
|
@ -241,32 +249,41 @@
|
||||||
</el-table>
|
</el-table>
|
||||||
<!-- 序列信息 -->
|
<!-- 序列信息 -->
|
||||||
<h3>{{ $t('trials:audit:title:series') }}</h3>
|
<h3>{{ $t('trials:audit:title:series') }}</h3>
|
||||||
<el-table :data="seriesList" :row-class-name="tableRowClassName">
|
<el-table
|
||||||
|
:data="seriesList"
|
||||||
|
:row-class-name="tableRowClassName"
|
||||||
|
:default-sort="{ prop: 'CreateTime', order: 'descending' }"
|
||||||
|
>
|
||||||
<!-- 序列号 -->
|
<!-- 序列号 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="SeriesNumber"
|
prop="SeriesNumber"
|
||||||
:label="$t('trials:audit:table:seriesId')"
|
:label="$t('trials:audit:table:seriesId')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查编号 -->
|
<!-- 检查编号 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="StudyCode"
|
prop="StudyCode"
|
||||||
:label="$t('trials:audit:table:seriesOfStudyId')"
|
:label="$t('trials:audit:table:seriesOfStudyId')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Modality"
|
prop="Modality"
|
||||||
:label="$t('trials:audit:table:seriesModality')"
|
:label="$t('trials:audit:table:seriesModality')"
|
||||||
|
sortable
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<!-- 图像数量 -->
|
<!-- 图像数量 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="InstanceCount"
|
prop="InstanceCount"
|
||||||
:label="$t('trials:audit:table:seriesOfInstanceCount')"
|
:label="$t('trials:audit:table:seriesOfInstanceCount')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查日期 -->
|
<!-- 检查日期 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="SeriesTime"
|
prop="SeriesTime"
|
||||||
:label="$t('trials:audit:table:seriesOfStudyDate')"
|
:label="$t('trials:audit:table:seriesOfStudyDate')"
|
||||||
|
sortable
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -281,12 +298,21 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="CreateTime"
|
prop="CreateTime"
|
||||||
:label="$t('trials:audit:table:seriesOfUploadedDate')"
|
:label="$t('trials:audit:table:seriesOfUploadedDate')"
|
||||||
|
sortable
|
||||||
|
show-overflow-tooltip
|
||||||
|
/>
|
||||||
|
<!-- 上传时间 -->
|
||||||
|
<el-table-column
|
||||||
|
prop="UpdateTime"
|
||||||
|
:label="$t('trials:audit:table:seriesOfUpdateTime')"
|
||||||
|
sortable
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<!-- 是否阅片 -->
|
<!-- 是否阅片 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="IsReading"
|
prop="IsReading"
|
||||||
:label="$t('trials:audit:table:isReading')"
|
:label="$t('trials:audit:table:isReading')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-switch
|
<el-switch
|
||||||
|
@ -302,6 +328,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="IsDeleted"
|
prop="IsDeleted"
|
||||||
:label="$t('trials:audit:table:isDelete')"
|
:label="$t('trials:audit:table:isDelete')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-switch
|
<el-switch
|
||||||
|
@ -404,28 +431,33 @@
|
||||||
<el-table
|
<el-table
|
||||||
:data="noneDicomStudyList"
|
:data="noneDicomStudyList"
|
||||||
@selection-change="handleSelectionChangeNonedicom"
|
@selection-change="handleSelectionChangeNonedicom"
|
||||||
|
:default-sort="{ prop: 'CreateTime', order: 'descending' }"
|
||||||
>
|
>
|
||||||
<el-table-column type="selection" width="55"> </el-table-column>
|
<el-table-column type="selection" width="55"> </el-table-column>
|
||||||
<!-- 检查编号 -->
|
<!-- 检查编号 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="CodeView"
|
prop="CodeView"
|
||||||
:label="$t('trials:audit:table:nonDicomsStudyId')"
|
:label="$t('trials:audit:table:nonDicomsStudyId')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查名称 -->
|
<!-- 检查名称 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="StudyName"
|
prop="StudyName"
|
||||||
v-if="relationInfo.IsShowStudyName"
|
v-if="relationInfo.IsShowStudyName"
|
||||||
:label="$t('trials:audit:table:StudyName')"
|
:label="$t('trials:audit:table:StudyName')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查类型 -->
|
<!-- 检查类型 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Modality"
|
prop="Modality"
|
||||||
:label="$t('trials:audit:table:nonDicomsModality')"
|
:label="$t('trials:audit:table:nonDicomsModality')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<!-- 检查部位 -->
|
<!-- 检查部位 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="BodyPart"
|
prop="BodyPart"
|
||||||
:label="$t('trials:audit:table:nonDicomsBodypart')"
|
:label="$t('trials:audit:table:nonDicomsBodypart')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ getBodyPart(scope.row.BodyPart) }}
|
{{ getBodyPart(scope.row.BodyPart) }}
|
||||||
|
@ -435,6 +467,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="FileCount"
|
prop="FileCount"
|
||||||
:label="$t('trials:audit:table:nonDicomsFileCount')"
|
:label="$t('trials:audit:table:nonDicomsFileCount')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-popover
|
<el-popover
|
||||||
|
@ -514,6 +547,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="ImageDate"
|
prop="ImageDate"
|
||||||
:label="$t('trials:audit:table:nonDicomsStudyDate')"
|
:label="$t('trials:audit:table:nonDicomsStudyDate')"
|
||||||
|
sortable
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<i
|
<i
|
||||||
|
@ -538,6 +572,13 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="UpdateTime"
|
prop="UpdateTime"
|
||||||
:label="$t('trials:audit:table:nonDicomsUpdateTime')"
|
:label="$t('trials:audit:table:nonDicomsUpdateTime')"
|
||||||
|
sortable
|
||||||
|
/>
|
||||||
|
<!-- 创建时间 -->
|
||||||
|
<el-table-column
|
||||||
|
prop="CreateTime"
|
||||||
|
:label="$t('trials:audit:table:nonDicomsCreateTime')"
|
||||||
|
sortable
|
||||||
/>
|
/>
|
||||||
<el-table-column :label="$t('common:action:action')">
|
<el-table-column :label="$t('common:action:action')">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -2628,11 +2669,11 @@ export default {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
/deep/ .delete-row {
|
::v-deep .delete-row {
|
||||||
text-decoration-line: line-through;
|
text-decoration-line: line-through;
|
||||||
color: #c0c4cc;
|
color: #c0c4cc;
|
||||||
}
|
}
|
||||||
/deep/ .el-card {
|
::v-deep .el-card {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue