diff --git a/src/components/360View/drawer.vue b/src/components/360View/drawer.vue index 0cb66c4..215e1bb 100644 --- a/src/components/360View/drawer.vue +++ b/src/components/360View/drawer.vue @@ -3,8 +3,8 @@
- - + +
@@ -16,6 +16,9 @@ import shrink from '@/components/360View/shrink' export default { components: { shrink }, props: { + curType: { + type: Number + }, // 是否打开 display: { type: Boolean @@ -76,7 +79,8 @@ export default { return { width: this.width, right: this.display ? '0' : `-${this.width}`, - borderLeft: this.mask ? 'none' : '1px solid #eee' + borderLeft: this.mask ? 'none' : '1px solid #eee', + display: !(this.mask && this.display) ? 'none' : '' } } }, @@ -113,15 +117,15 @@ export default { height: 100%; /* 遮罩 */ .mask-show { - //position: fixed; - //top: 0; - //left: 0; - //width: 100%; - //height: 100%; - //z-index: 999; - //background-color: rgba(0,0,0,.5); - //opacity: 1; - //transition: opacity .5s; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 999; + background-color: rgba(0,0,0,.5); + opacity: 1; + transition: opacity .5s; } .mask-hide { opacity: 0; diff --git a/src/components/360View/index1.vue b/src/components/360View/index1.vue index 4ce304a..f9cc931 100644 --- a/src/components/360View/index1.vue +++ b/src/components/360View/index1.vue @@ -195,8 +195,8 @@ - - + +
-
- +
+
- +
-
+
+
+ +
@@ -328,7 +332,7 @@ export default { text-align: center; background-color: #F0F2F5; overflow: hidden; -overflow-y: scroll; + overflow-y: scroll; .content-right-buttonClick { display: flex; justify-content: flex-end; diff --git a/src/components/360View/medicalRecord/outPatientRecord/leftFormList.vue b/src/components/360View/medicalRecord/outPatientRecord/leftFormList.vue index b127c5c..cebe94a 100644 --- a/src/components/360View/medicalRecord/outPatientRecord/leftFormList.vue +++ b/src/components/360View/medicalRecord/outPatientRecord/leftFormList.vue @@ -1,11 +1,14 @@