|
|
@@ -16,10 +16,12 @@
|
|
|
<text>{{ item.className || "" }}</text>
|
|
|
</div>
|
|
|
</scroll-view>
|
|
|
- <scroll-view scroll-y class="right-box" :scroll-into-view="scroll_into_view" scroll-with-animation="true"
|
|
|
- @scroll="scroll_detail"
|
|
|
- lower-threshold="100"
|
|
|
- @scrolltolower="scroll_bottom">
|
|
|
+ <scroll-view scroll-y class="right-box"
|
|
|
+ :scroll-into-view="scroll_into_view"
|
|
|
+ scroll-with-animation="true"
|
|
|
+ @scroll="scroll_detail"
|
|
|
+ lower-threshold="100"
|
|
|
+ @scrolltolower="scroll_bottom">
|
|
|
<!--内容部分 start -->
|
|
|
<block v-if="!$util.isEmpty(globalClassItemList)">
|
|
|
<view class="item_list_bx selectAll" v-for="(classItem, classIndex) in globalClassItemList" :key="classIndex" :id="`class_${classIndex}`">
|
|
|
@@ -221,7 +223,7 @@ export default {
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
.tab-view {
|
|
|
- height: 100%;
|
|
|
+ height: calc(100vh - 140upx);
|
|
|
width: 170upx;
|
|
|
flex-shrink: 0;
|
|
|
background-color: #f0f2f6;
|
|
|
@@ -270,7 +272,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.right-box {
|
|
|
- height: 100%;
|
|
|
+ height: calc(100vh - 170upx);
|
|
|
flex: 1;
|
|
|
box-sizing: border-box;
|
|
|
}
|