diff --git a/src/views/none-dicom-show/index.vue b/src/views/none-dicom-show/index.vue
index 00c8092e..9440a1cd 100644
--- a/src/views/none-dicom-show/index.vue
+++ b/src/views/none-dicom-show/index.vue
@@ -6,67 +6,86 @@
-
-
- {{ study.CodeView }}
-
- {{ study.StudyName }}
-
- {{ study.Modality }}
- {{ getBodyPart(study.BodyPart) }}
-
-
-
- {{ $t('trials:audit:message:noData') }}
-
-
-
-
-
- {{ `${j + 1}. ${item.FileName}` }}
-
-
-
- {{ `${j + 1}. ${item.FileName}` }}
-
-
-
-
- {{ $t('trials:audit:table:isReading') }}
-
-
-
- {{ $t('trials:audit:table:isDelete') }}
-
-
-
+
+
+
+ {{ study.CodeView }}
+
+ {{ study.StudyName }}
+
+ {{ study.Modality }}
+ {{ getBodyPart(study.BodyPart) }}
-
-
+
+
+ {{ $t('trials:audit:message:noData') }}
+
+
+
+
+
+
+
+
+ {{ `${j + 1}. ${item.FileName}` }}
+
+
+
+ {{ `${j + 1}. ${item.FileName}` }}
+
+
+
+
+ {{ $t('trials:audit:table:isReading') }}
+
+
+
+ {{ $t('trials:audit:table:isDelete') }}
+
+
+
+
+
+
+
+
@@ -136,6 +155,8 @@ export default {
},
isQcCheck: false,
isAudit: false,
+
+ activeNames: [],
}
},
async created() {
@@ -153,6 +174,7 @@ export default {
// 默认选择第一个文件
},
methods: {
+ handleChange() {},
changeReadingStatus(callback, row, file) {
let statusStr = ''
if (callback) {
@@ -282,6 +304,8 @@ export default {
const studyIndex = this.studyList.findIndex((item) => {
return item.NoneDicomStudyFileList.length > 0
})
+ this.activeNames = this.studyList.map((item) => item.CodeView)
+ console.log(this.activeNames)
if (studyIndex > -1) {
var fileObj = this.studyList[studyIndex]['NoneDicomStudyFileList']
this.selected(fileObj[0], studyIndex, 0, true)
@@ -364,7 +388,7 @@ export default {
}
}
.study-desc {
- padding: 15px 5px;
+ padding: 10px 5px;
line-height: 20px;
background-color: #d5d5d5;
font-weight: 500;
@@ -409,6 +433,11 @@ export default {
display: inline-block;
box-sizing: border-box;
border-bottom: 2px solid #f3f3f3;
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+ justify-content: flex-start;
+ padding: 5px 10px;
cursor: pointer;
// margin-bottom: 5px;
@@ -416,7 +445,8 @@ export default {
}
.img-text {
display: inline-block;
- width: 200px;
+ width: calc(100% - 60px);
+ margin-left: 5px;
height: 50px;
line-height: 50px;
overflow: hidden;
@@ -444,7 +474,8 @@ export default {
}
}
.switchBox {
- margin-bottom: 5px;
+ width: 100%;
+ margin: 5px 0;
color: #4e4e4e;
.item {
display: flex;
@@ -453,4 +484,15 @@ export default {
margin-bottom: 5px;
}
}
+.file-image {
+ width: 50px;
+ height: 50px;
+}
+::v-deep .el-collapse-item__header {
+ background-color: #d5d5d5;
+}
+::v-deep .el-collapse-item__header {
+ min-height: 48px;
+ height: auto;
+}