阅片界面样式优化
parent
81171f6486
commit
3ea4617d45
|
@ -2252,8 +2252,9 @@ export default {
|
||||||
border: 1px solid rgba(255, 255, 255, 0.21);
|
border: 1px solid rgba(255, 255, 255, 0.21);
|
||||||
position: relative;
|
position: relative;
|
||||||
&_active{
|
&_active{
|
||||||
// border: 2px solid #ffeb3b;fff
|
// border: 2px solid #ffeb3b;fff;#428bca
|
||||||
border: 1px dashed #428bca;
|
// border: 1.5px dashed #ffeb3b;
|
||||||
|
border: 1px dashed rgb(250, 250, 0);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="image_preview-wrapper">
|
<div class="screenshot_preview-wrapper">
|
||||||
|
|
||||||
<div class="image-viewer-wrapper">
|
<div class="image-viewer-wrapper">
|
||||||
<!-- 预览图像 -->
|
<!-- 预览图像 -->
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
:url-list="previewImages"
|
:url-list="previewImages"
|
||||||
/>
|
/>
|
||||||
</div>
|
</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="">
|
||||||
<div class="img-wrapper">
|
<div class="img-wrapper">
|
||||||
<el-button
|
<el-button
|
||||||
|
@ -195,12 +195,12 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" >
|
<style lang="scss" >
|
||||||
.image_preview-wrapper{
|
.screenshot_preview-wrapper{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
background-color: #000;
|
||||||
.image-viewer-wrapper{
|
.image-viewer-wrapper{
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -343,7 +343,7 @@ export default {
|
||||||
// width: 70px;
|
// width: 70px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #606266;
|
color: #ddd;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
// color: #fff;
|
// color: #fff;
|
||||||
// background-color: #606266;
|
// background-color: #606266;
|
||||||
|
@ -364,7 +364,7 @@ export default {
|
||||||
}
|
}
|
||||||
.image-viewer__actions{
|
.image-viewer__actions{
|
||||||
left:50%;
|
left:50%;
|
||||||
bottom:30px;
|
bottom:15px;
|
||||||
transform:translateX(-50%);
|
transform:translateX(-50%);
|
||||||
width:282px;
|
width:282px;
|
||||||
height:44px;
|
height:44px;
|
||||||
|
|
|
@ -2381,7 +2381,7 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
&_active{
|
&_active{
|
||||||
// border: 2px solid #ffeb3b;fff
|
// border: 2px solid #ffeb3b;fff
|
||||||
border: 1px dashed #428bca;
|
border: 1px dashed rgb(250, 250, 0);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -557,7 +557,12 @@ export default {
|
||||||
if (!this.isBaseLineTask && this.questionForm[this.pet5PSId] > 0) {
|
if (!this.isBaseLineTask && this.questionForm[this.pet5PSId] > 0) {
|
||||||
// 当前访视的PET 5ps评分大于基线的PET 5ps评分 增大
|
// 当前访视的PET 5ps评分大于基线的PET 5ps评分 增大
|
||||||
// 当前访视的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() {
|
setpet5PS() {
|
||||||
|
|
Loading…
Reference in New Issue