Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is pending
Details
continuous-integration/drone/push Build is pending
Details
commit
14e2afcfee
|
|
@ -322,7 +322,7 @@ export default {
|
|||
<style lang="scss">
|
||||
.mask {
|
||||
position: relative;
|
||||
filter: blur(2px);
|
||||
filter: blur(5px);
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
|
|
@ -334,7 +334,7 @@ export default {
|
|||
height: 100%;
|
||||
content: '';
|
||||
display: block;
|
||||
background: rgba(255, 253, 253, 0.2);
|
||||
background: rgba(255, 253, 253, 0.5);
|
||||
}
|
||||
|
||||
$light_gray: #606266;
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
isPM() {
|
||||
return this.hasPermi(['role:pm', 'role:spm', 'role:cpm', 'role:apm'])
|
||||
return this.hasPermi(['role:pm', 'role:spm', 'role:cpm', 'role:apm']) && this.state !== 3
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
|
|
@ -40,9 +40,9 @@
|
|||
@click.prevent="setToolActive('CircularEraser')">
|
||||
<svg-icon icon-class="clear" class="svg-icon" />
|
||||
</div>
|
||||
<div :class="['tool-item']">
|
||||
<!-- <div :class="['tool-item']">
|
||||
<input type="file" @change="beginScanFiles($event)">
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
<div class="ConfigBox">
|
||||
<div class="EraserConfig"
|
||||
|
|
@ -133,8 +133,8 @@
|
|||
</div>
|
||||
<div class="SegmentConfig">
|
||||
<span>{{ $t('trials:reading:Segmentations:title:Border') }}</span>
|
||||
<el-slider v-model="SegmentConfig.outlineWidth" show-input :step="1" :max="10"
|
||||
input-size="mini" :show-input-controls="false" />
|
||||
<el-slider v-model="SegmentConfig.outlineWidth" show-input :step="1" :max="10" input-size="mini"
|
||||
:show-input-controls="false" />
|
||||
</div>
|
||||
<span class="line" />
|
||||
<div class="SegmentConfig" style="justify-content: flex-start;">
|
||||
|
|
@ -602,6 +602,7 @@ export default {
|
|||
brushSize: {
|
||||
handler() {
|
||||
this.setBrushSize(this.activeTool)
|
||||
this.setSegmentConfig()
|
||||
},
|
||||
deep: true
|
||||
},
|
||||
|
|
|
|||
|
|
@ -330,7 +330,6 @@ class Note_RectangleRoiTool extends cornerstoneTools.RectangleROITool {
|
|||
);
|
||||
|
||||
renderStatus = true;
|
||||
return renderStatus;
|
||||
}
|
||||
|
||||
return renderStatus;
|
||||
|
|
|
|||
Loading…
Reference in New Issue