|
@@ -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>
|