Compare commits
No commits in common. "22b77ff70ff8c989537bed2a53db03ba82eb7bfd" and "8ff9e3b2324d2372ef90b14a6220ddf5dfac1400" have entirely different histories.
22b77ff70f
...
8ff9e3b232
|
|
@ -26,8 +26,6 @@
|
||||||
$t('DicomViewer:anonymous:Exit') }}</div>
|
$t('DicomViewer:anonymous:Exit') }}</div>
|
||||||
<div :class="{ btn: true, isNoted: isComparison }" @click="recovery(false)">{{
|
<div :class="{ btn: true, isNoted: isComparison }" @click="recovery(false)">{{
|
||||||
$t('DicomViewer:anonymous:Recovery') }}</div>
|
$t('DicomViewer:anonymous:Recovery') }}</div>
|
||||||
<div :class="{ btn: true, isNoted: isComparison }" @click="recovery(true)">{{
|
|
||||||
$t('DicomViewer:anonymous:RecoveryAll') }}</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="layoutRow >= 1" class="dicom-row" :style="{ height: rowHeight }">
|
<div v-show="layoutRow >= 1" class="dicom-row" :style="{ height: rowHeight }">
|
||||||
<div v-show="layoutRow >= 1 && layoutCol >= 1" class="dicom-item"
|
<div v-show="layoutRow >= 1 && layoutCol >= 1" class="dicom-item"
|
||||||
|
|
@ -101,8 +99,7 @@
|
||||||
<option value="3x2">3x2</option>
|
<option value="3x2">3x2</option>
|
||||||
<option value="3x3">3x3</option>
|
<option value="3x3">3x3</option>
|
||||||
</select>
|
</select>
|
||||||
<div class="btnBox" v-if="hasAnonymous && hasPermi(['role:iqc'])" @click="openAnonymous">{{
|
<div class="btnBox" v-if="hasAnonymous" @click="openAnonymous">{{ $t('DicomViewer:anonymous:PixelAnonymity')
|
||||||
$t('DicomViewer:anonymous:PixelAnonymity')
|
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1173,7 +1170,7 @@ export default {
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
width: 12%;
|
width: 15%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
|
|
|
||||||
|
|
@ -531,7 +531,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
showSeriesImage(e, seriesIndex, series) {
|
showSeriesImage(e, seriesIndex, series) {
|
||||||
if (!this.isComparison) return false
|
if (!isComparison) return false
|
||||||
this.activeSeriesId = series.seriesId
|
this.activeSeriesId = series.seriesId
|
||||||
workSpeedclose(true)
|
workSpeedclose(true)
|
||||||
// if (seriesIndex === this.currentSeriesIndex) return
|
// if (seriesIndex === this.currentSeriesIndex) return
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue