liyongli 1 éve
szülő
commit
eaebc93326
1 módosított fájl, 12 hozzáadás és 3 törlés
  1. 12 3
      src/view/task/onlineText.vue

+ 12 - 3
src/view/task/onlineText.vue

@@ -1,6 +1,6 @@
 <template>
-  <div>
     <div class="edito">
+      <div class="bgc"></div>
       <div
         class="onlineTextMain"
         v-loading="loading"
@@ -478,7 +478,6 @@
         </div>
       </div>
     </div>
-  </div>
 </template>
 
 <script setup>
@@ -685,7 +684,7 @@ function exportFun() {
   flex: 3;
   margin-right: 0.5em;
   border: 1px solid #eee;
-  height: calc(100vh - 106px);
+  height: calc(100vh - 26px);
 }
 .onlineTextMain .flex2 {
   flex: 2;
@@ -774,4 +773,14 @@ function exportFun() {
 .example-showcase .el-loading-mask {
   z-index: 9;
 }
+
+.bgc {
+  position: absolute;
+  right: 0;
+  left: 0;
+  top: 0;
+  bottom: 0;
+  background-color: #fff;
+  z-index: -2;
+}
 </style>