Browse Source

表格的高度设置

zhuliu 2 năm trước cách đây
mục cha
commit
09a7eeb018

+ 1 - 0
RMS-FrontEnd/src/views/report/FTO/FTOPage/components/PatentFeatures.vue

@@ -265,6 +265,7 @@
             } else {
                 this.tableHeight = offsetTop
             }
+            this.tableHeight = this.tableHeight>300?this.tableHeight:300
         },
       //获取拆分信息
       async getSplitMessage(){

+ 1 - 0
RMS-FrontEnd/src/views/report/Invalid/InvalidPage/Claims.vue

@@ -165,6 +165,7 @@ export default {
       } else {
         this.tableHeight = offsetTop
       }
+      this.tableHeight = this.tableHeight>300?this.tableHeight:300
     },
     //选中特征
     getFunInfo(row,scope) {

+ 1 - 1
RMS-FrontEnd/src/views/report/Invalid/InvalidPage/Result.vue

@@ -150,7 +150,7 @@
         width="100px">
         <template slot-scope="scope" >     
           <el-checkbox-group v-model="checkRecord">  
-          <el-checkbox :label="scope.row.content" @change="getFunInfo(scope.row)">
+          <el-checkbox :label="scope.row.id+scope.row.content" @change="getFunInfo(scope.row)">
                   {{''}}
               </el-checkbox>
             </el-checkbox-group>

+ 1 - 0
RMS-FrontEnd/src/views/report/components/Tabel.vue

@@ -95,6 +95,7 @@ export default {
       } else {
         this.tableHeight = offsetTop
       }
+      this.tableHeight = this.tableHeight>300?this.tableHeight:300
     },
     //编辑报告
     handleEdit(row) {