| | |
| | | class="class-list" |
| | | scroll-into-view="{{ 'list' + startCheck.id}}" |
| | | > |
| | | <view wx:if="{{listLoading}}"> |
| | | <t-loading |
| | | theme="spinner" |
| | | size="400rpx" |
| | | loading="{{listLoading}}" |
| | | ></t-loading> |
| | | </view> |
| | | <view |
| | | wx:for="{{startList}}" |
| | | wx:for-item="item" |
| | | wx:key="id" |
| | | id="{{ 'list' + item.id}}" |
| | | class="class-box" |
| | | wx:if="{{!listLoading}}" |
| | | wx:if="{{!stairListLoading}}" |
| | | > |
| | | <view class="class-name">{{item.name}}</view> |
| | | <view class="class-content"> |
| | |
| | | </view> |
| | | </view> |
| | | </view> |
| | | <view |
| | | wx:if="{{stairListLoading}}" |
| | | style="width: 100%; height: min-content" |
| | | > |
| | | <t-skeleton |
| | | row-col="{{rowCol}}" |
| | | theme="paragraph" |
| | | animation="gradient" |
| | | loading="{{stairListLoading}}" |
| | | ></t-skeleton> |
| | | </view> |
| | | <view class="bottom-box"> </view> |
| | | </scroll-view> |
| | | </view> |