提示语添加限制条件
continuous-integration/drone/push Build is pending
Details
continuous-integration/drone/push Build is pending
Details
parent
c9057e12cd
commit
3e19e85a8d
|
|
@ -193,7 +193,7 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
activeSeries(series, seriesIndex, studyIndex) {
|
activeSeries(series, seriesIndex, studyIndex) {
|
||||||
const photometricInterpretation = series?.InstanceInfoList[0]?.PhotometricInterpretation;
|
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'))
|
return this.$confirm(this.$t('trials:histogram:confirm:activeSeriesPhotometricInterpretationNotSupported'))
|
||||||
this.$emit('activeSeries', series)
|
this.$emit('activeSeries', series)
|
||||||
this.activeStudyIndex = studyIndex
|
this.activeStudyIndex = studyIndex
|
||||||
|
|
@ -335,6 +335,7 @@ export default {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.study-meta-line {
|
.study-meta-line {
|
||||||
// display: grid;
|
// display: grid;
|
||||||
// grid-template-columns: minmax(0, 1fr) auto;
|
// grid-template-columns: minmax(0, 1fr) auto;
|
||||||
|
|
@ -344,6 +345,7 @@ export default {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.study-meta-main {
|
.study-meta-main {
|
||||||
display: block;
|
display: block;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
|
@ -351,11 +353,13 @@ export default {
|
||||||
overflow-wrap: anywhere;
|
overflow-wrap: anywhere;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.study-code,
|
.study-code,
|
||||||
.study-modality {
|
.study-modality {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.patient-info {
|
.patient-info {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue