阅片界面样式优化
parent
81171f6486
commit
3ea4617d45
|
@ -2252,8 +2252,9 @@ export default {
|
|||
border: 1px solid rgba(255, 255, 255, 0.21);
|
||||
position: relative;
|
||||
&_active{
|
||||
// border: 2px solid #ffeb3b;fff
|
||||
border: 1px dashed #428bca;
|
||||
// border: 2px solid #ffeb3b;fff;#428bca
|
||||
// border: 1.5px dashed #ffeb3b;
|
||||
border: 1px dashed rgb(250, 250, 0);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="image_preview-wrapper">
|
||||
<div class="screenshot_preview-wrapper">
|
||||
|
||||
<div class="image-viewer-wrapper">
|
||||
<!-- 预览图像 -->
|
||||
|
@ -14,7 +14,7 @@
|
|||
:url-list="previewImages"
|
||||
/>
|
||||
</div>
|
||||
<div class="thumbnail-wrapper" style="z-index:999;background-color:#fff;">
|
||||
<div class="thumbnail-wrapper" style="z-index:999;background-color:#000;">
|
||||
<div class="">
|
||||
<div class="img-wrapper">
|
||||
<el-button
|
||||
|
@ -194,13 +194,13 @@ export default {
|
|||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.image_preview-wrapper{
|
||||
<style lang="scss" >
|
||||
.screenshot_preview-wrapper{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
background-color: #000;
|
||||
.image-viewer-wrapper{
|
||||
flex: 1;
|
||||
}
|
||||
|
|
|
@ -343,7 +343,7 @@ export default {
|
|||
// width: 70px;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
color: #606266;
|
||||
color: #ddd;
|
||||
font-weight: bold;
|
||||
// color: #fff;
|
||||
// background-color: #606266;
|
||||
|
@ -364,7 +364,7 @@ export default {
|
|||
}
|
||||
.image-viewer__actions{
|
||||
left:50%;
|
||||
bottom:30px;
|
||||
bottom:15px;
|
||||
transform:translateX(-50%);
|
||||
width:282px;
|
||||
height:44px;
|
||||
|
|
|
@ -2381,7 +2381,7 @@ export default {
|
|||
position: relative;
|
||||
&_active{
|
||||
// border: 2px solid #ffeb3b;fff
|
||||
border: 1px dashed #428bca;
|
||||
border: 1px dashed rgb(250, 250, 0);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -239,7 +239,7 @@ export default {
|
|||
// 是否有标记未保存
|
||||
var existUnSave = this.checkAnnotationStatus(this.questions)
|
||||
if (existUnSave) {
|
||||
this.$alert(this.$t('trials:lugano:message:saveWarning1'),this.$t('trials:lugano:fusionDialog:warning'))
|
||||
this.$alert(this.$t('trials:lugano:message:saveWarning1'), this.$t('trials:lugano:fusionDialog:warning'))
|
||||
return
|
||||
}
|
||||
// 肝脏血池SUVmax
|
||||
|
@ -378,7 +378,7 @@ export default {
|
|||
loading.close()
|
||||
return
|
||||
}
|
||||
var obj = Object.assign({},annotationObj)
|
||||
var obj = Object.assign({}, annotationObj)
|
||||
FusionEvent.$emit('getScreenshots', { otherMeasureData: obj.OtherMeasureData }, async val => {
|
||||
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
|
||||
var picturePath = pictureObj.isSuccess ? this.$getObjectName(pictureObj.result.url) : ''
|
||||
|
@ -557,7 +557,12 @@ export default {
|
|||
if (!this.isBaseLineTask && this.questionForm[this.pet5PSId] > 0) {
|
||||
// 当前访视的PET 5ps评分大于基线的PET 5ps评分 增大
|
||||
// 当前访视的PET 5ps评分小于基线的PET 5ps评分 减小
|
||||
this.questionForm[this.uptakeFromBaselineId] = this.questionForm[this.pet5PSId] > this.baseLinePET5PS ? '1' : this.questionForm[this.pet5PSId] < this.baseLinePET5PS ? '2' : ''
|
||||
if (this.questionForm[this.pet5PSId] > this.baseLinePET5PS) {
|
||||
this.questionForm[this.uptakeFromBaselineId] = '1'
|
||||
} else if (this.questionForm[this.pet5PSId] < this.baseLinePET5PS) {
|
||||
this.questionForm[this.uptakeFromBaselineId] = '2'
|
||||
}
|
||||
// this.questionForm[this.uptakeFromBaselineId] = this.questionForm[this.pet5PSId] > this.baseLinePET5PS ? '1' : this.questionForm[this.pet5PSId] < this.baseLinePET5PS ? '2' : ''
|
||||
}
|
||||
},
|
||||
setpet5PS() {
|
||||
|
|
Loading…
Reference in New Issue