|
@@ -24,7 +24,7 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
- <div class="struct-box">
|
|
|
+ <div v-if="!IS_NONE_SET" class="struct-box">
|
|
|
<div v-if="isClassify" class="struct-folder">
|
|
|
<el-tree
|
|
|
class="folder-tree"
|
|
@@ -45,6 +45,7 @@
|
|
|
:tree-props="tableTreeProps"
|
|
|
row-key="id"
|
|
|
border
|
|
|
+ max-height="400"
|
|
|
>
|
|
|
<el-table-column label="分类" prop="name">
|
|
|
<template slot-scope="scope">
|
|
@@ -160,6 +161,9 @@ export default {
|
|
|
IS_ONLY_PROPERTY() {
|
|
|
return !this.isClassify && !this.isDifficult && this.isProperty;
|
|
|
},
|
|
|
+ IS_NONE_SET() {
|
|
|
+ return !this.isClassify && !this.isDifficult && !this.isProperty;
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
"filterData.questionType": {
|