|
@@ -26,8 +26,8 @@
|
|
|
:indeterminate="first.indeterminate"
|
|
|
@change="onFirstChange($event, first, fIndex)"
|
|
|
>
|
|
|
+ <span class="item-name">{{ first.label }}</span>
|
|
|
</el-checkbox>
|
|
|
- <span class="item-name">{{ first.label }}</span>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
@@ -332,7 +332,7 @@ export default {
|
|
|
|
|
|
.module-main {
|
|
|
flex: 1;
|
|
|
- overflow-y: scroll;
|
|
|
+ overflow-y: auto;
|
|
|
}
|
|
|
|
|
|
.module-item {
|
|
@@ -362,4 +362,12 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+::v-deep {
|
|
|
+ .el-checkbox {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .el-checkbox__label {
|
|
|
+ padding-left: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|