diff --git a/src/views/none-dicom-show/index.vue b/src/views/none-dicom-show/index.vue
index a2355602..f861abf0 100644
--- a/src/views/none-dicom-show/index.vue
+++ b/src/views/none-dicom-show/index.vue
@@ -9,9 +9,9 @@
{{ study.CodeView }}
- {{
- study.StudyName
- }}
+
+ {{ study.StudyName }}
+
{{ study.Modality }}
{{ getBodyPart(study.BodyPart) }}
diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue b/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue
index f1a86870..bb571f80 100644
--- a/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue
+++ b/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue
@@ -34,6 +34,7 @@
height="300"
:row-class-name="tableRowClassName"
@selection-change="handleSelectionChange"
+ :default-sort="{ prop: 'UploadedTime', order: 'descending' }"
>
@@ -78,6 +84,7 @@
@@ -85,6 +92,7 @@
@@ -92,6 +100,7 @@
@@ -103,9 +112,18 @@
+
+
@@ -44,6 +45,7 @@
:label="$t('trials:uploadedDicoms:table:studyId')"
min-width="80"
show-overflow-tooltip
+ sortable
>
{{ getBodyPart(scope.row.BodyPartForEdit) }}
@@ -120,6 +126,7 @@
:label="$t('trials:uploadedDicoms:table:seriesCount')"
min-width="100"
show-overflow-tooltip
+ sortable
/>
{{
@@ -147,8 +156,17 @@
+
+
`
- this.$alert(
- content,
- this.$t('trials:uploadDicomList:label:prompt'),
- {
- confirmButtonText: this.$t(
- 'trials:uploadDicomList:label:confirm'
- ),
- dangerouslyUseHTMLString: true,
- callback: (action) => {},
- }
- )
+ this.$alert(content, '', {
+ confirmButtonText: this.$t(
+ 'trials:uploadDicomList:label:confirm'
+ ),
+ dangerouslyUseHTMLString: true,
+ callback: (action) => {},
+ })
this.btnLoading = false
}
var results = []
@@ -1760,7 +1781,7 @@ export default {
o.imageColumns,
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 seriesRes = await OSSclient.put(
thumbnailPath,
diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue b/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue
index 57a1e608..486aecf7 100644
--- a/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue
+++ b/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue
@@ -23,27 +23,35 @@
-
+
{{ getBodyPart(scope.row.BodyPart) }}
@@ -53,6 +61,7 @@
{{ moment(scope.row.ImageDate).format('YYYY-MM-DD') }}
@@ -174,6 +184,13 @@
+
+
@@ -887,7 +904,6 @@ export default {
// 扫描待上传文件
beginScanFiles(e) {
var files = [...e.target.files]
- console.log(files)
var sameFiles = []
files.forEach((file) => {
var extendName = file.name
diff --git a/src/views/trials/trials-panel/visit/qc-check/components/dicomFiles.vue b/src/views/trials/trials-panel/visit/qc-check/components/dicomFiles.vue
index 295c47f3..fc6542b7 100644
--- a/src/views/trials/trials-panel/visit/qc-check/components/dicomFiles.vue
+++ b/src/views/trials/trials-panel/visit/qc-check/components/dicomFiles.vue
@@ -19,6 +19,7 @@
height="300"
:row-class-name="tableRowClassName"
@selection-change="handleSelectionChange"
+ :default-sort="{ prop: 'UploadedTime', order: 'descending' }"
>
@@ -51,15 +53,18 @@
v-if="relationInfo.IsShowStudyName"
prop="StudyName"
:label="$t('trials:audit:table:StudyName')"
+ sortable
/>
{{ getBodyPart(scope.row.BodyPartForEdit) }}
@@ -78,6 +84,7 @@
:label="$t('trials:audit:table:seriesCount')"
min-width="100"
show-overflow-tooltip
+ sortable
/>
{{ moment(scope.row.StudyTime).format('YYYY-MM-DD') }}
@@ -103,6 +112,15 @@
:label="$t('trials:audit:table:studyUploadTime')"
min-width="80"
show-overflow-tooltip
+ sortable
+ />
+
+
{{ $t('trials:audit:title:series') }}
-
+
@@ -281,12 +298,21 @@
+
+
{{ getBodyPart(scope.row.BodyPart) }}
@@ -435,6 +467,7 @@
+
+
@@ -2628,11 +2669,11 @@ export default {
margin-top: 10px;
overflow-y: auto;
}
- /deep/ .delete-row {
+ ::v-deep .delete-row {
text-decoration-line: line-through;
color: #c0c4cc;
}
- /deep/ .el-card {
+ ::v-deep .el-card {
padding: 10px;
}
}