caiyiling 2026-05-08 15:04:58 +08:00
commit d680c57482
1 changed files with 5 additions and 1 deletions

View File

@ -193,7 +193,7 @@ export default {
methods: {
activeSeries(series, seriesIndex, studyIndex) {
const photometricInterpretation = series?.InstanceInfoList[0]?.PhotometricInterpretation;
if (!photometricInterpretation || (photometricInterpretation !== 'MONOCHROME1' && photometricInterpretation !== 'MONOCHROME2'))
if ((!photometricInterpretation || (photometricInterpretation !== 'MONOCHROME1' && photometricInterpretation !== 'MONOCHROME2')) && this.readingTool === 3)
return this.$confirm(this.$t('trials:histogram:confirm:activeSeriesPhotometricInterpretationNotSupported'))
this.$emit('activeSeries', series)
this.activeStudyIndex = studyIndex
@ -335,6 +335,7 @@ export default {
white-space: normal;
overflow: visible;
}
.study-meta-line {
// display: grid;
// grid-template-columns: minmax(0, 1fr) auto;
@ -344,6 +345,7 @@ export default {
width: 100%;
min-width: 0;
}
.study-meta-main {
display: block;
min-width: 0;
@ -351,11 +353,13 @@ export default {
overflow-wrap: anywhere;
flex: 1;
}
.study-code,
.study-modality {
white-space: normal;
margin: 0 2px;
}
.patient-info {
display: inline-flex;
align-items: center;