zhuliu 2 år sedan
förälder
incheckning
8733665348

+ 2 - 2
RMS-FrontEnd/src/assets/css/activeDiv.scss

@@ -4,7 +4,7 @@
         display: flex;
         justify-content: space-around;
         width: 100%;
-        // height: 100%;
+        height: 100%;
         // margin: 10px 0px;
         overflow: auto;
         box-shadow: -1px 9px 10px 3px rgba(0, 0, 0, 0.11);
@@ -51,7 +51,7 @@
     }
     .box1{
         width: 100%;
-        // height: 100%;
+        height: 100%;
         
     }
     /*拖拽区div样式*/

+ 5 - 3
RMS-FrontEnd/src/views/components/articles/components/PatentRight.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="patent-articles-patent-right" @mouseup="mouseup" @mousemove="mousemove">
-    <el-tabs v-model="name"  @tab-click="handleClick">
+    <el-tabs v-model="name"  @tab-click="handleClick" style="height:100%">
       <el-tab-pane label="原文" name="0" :style="{height: height + 'px',overflowY: 'auto'}">
         <!-- <p class="common" v-for="(item, index) in records.original">
           <span v-if="item" :data-type="'权利要求原文'+(index+1)"  v-html="getViewDom(item,'权利要求原文'+(index+1))"></span>
@@ -21,7 +21,7 @@
         name="2"
         :style="{ height: height + 'px', overflowY: 'auto' }"
       >
-        <div class="box" ref="box" v-dragControllerDiv :style="setStyle()" style="height:calc(100% - 20px)">
+        <div class="box" ref="box" v-dragControllerDiv :style="setStyle()" style="height:calc(100%)">
           <div
             class="left tree"
             style="width: 70%"
@@ -363,7 +363,8 @@ export default {
 
 <style lang="scss">
 .patent-articles-patent-right {
-  margin-bottom: 20px;
+  // margin-bottom: 20px;
+  height: 100%;
   .common {
     // font-size: 14px;
     margin-top: 0;
@@ -376,5 +377,6 @@ export default {
     padding-bottom: 5px;
     margin-top: 0;
   }
+ 
 }
 </style>

+ 1 - 1
RMS-FrontEnd/src/views/components/common/PatentDetails/index.vue

@@ -1,5 +1,5 @@
 <template>
-    <div>
+    <div style="height:100%">
         <Patent-Details :patentNo="patentNo" :reportId="reportId"></Patent-Details>
     </div>
 </template>