|
@@ -262,16 +262,20 @@
|
|
|
style="backgroundColor:#2A97DF;color:#fff;fontSize:20px;cursor: pointer;"
|
|
|
></i>
|
|
|
</div>
|
|
|
- <el-tree
|
|
|
- :props="Rightprops"
|
|
|
- :data="rightData"
|
|
|
- node-key="id"
|
|
|
- accordion
|
|
|
- ref="tree"
|
|
|
- class="filter-tree"
|
|
|
- v-if="isentryTree"
|
|
|
- >
|
|
|
- </el-tree>
|
|
|
+ <div class="scrollClass" v-if="isentryTree" style="height:721px">
|
|
|
+ <el-scrollbar style="height:100%">
|
|
|
+ <el-tree
|
|
|
+ :props="Rightprops"
|
|
|
+ :data="rightData"
|
|
|
+ node-key="id"
|
|
|
+ ref="tree"
|
|
|
+ class="filter-tree"
|
|
|
+
|
|
|
+ >
|
|
|
+ </el-tree>
|
|
|
+ </el-scrollbar>
|
|
|
+ </div>
|
|
|
+
|
|
|
<!-- 立卷规则 -->
|
|
|
<div v-if="!isentryTree" style="margin-top:20px">
|
|
|
<el-checkbox-group v-model="checkList">
|
|
@@ -299,13 +303,14 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
-
|
|
|
- <div class="scrollClass" style="height:658px ;margin-top:20px">
|
|
|
- <el-scrollbar style="height:100%">
|
|
|
- <el-input
|
|
|
+ <el-input
|
|
|
placeholder="输入关键字进行过滤"
|
|
|
- v-model="rulefilterText">
|
|
|
- </el-input>
|
|
|
+ v-model="rulefilterText"
|
|
|
+ style="margin-top:20px"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ <div class="scrollClass" style="height:521px ;">
|
|
|
+ <el-scrollbar style="height:100%">
|
|
|
|
|
|
<el-tree
|
|
|
class="filter-tree"
|
|
@@ -313,7 +318,7 @@
|
|
|
:props="Rightprops"
|
|
|
default-expand-all
|
|
|
:filter-node-method="rulefilterNode"
|
|
|
- accordion
|
|
|
+
|
|
|
ref="ruletree">
|
|
|
</el-tree>
|
|
|
|