1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <view style="background: #f5f5f5; padding: 20rpx 0;">
- <view class="container">
-
- <!-- 空白区域 -->
- <view class="empty-space">
- <swiper style="width: 100%; height: 100%;" autoplay="true" interval="3000" circular>
- <block wx:for="{{carousellist}}" wx:key="index">
- <swiper-item>
- <image style="width: 100%; height: 100%;" src="{{item.url}}" mode="aspectFill" />
- </swiper-item>
- </block>
- </swiper>
- </view>
- <!-- 课程分类按钮 -->
- <view class="course-buttons">
- <view class="course-button1" style="background-image: url({{homepage_7}}); background-size: cover;" bindtap="goToGoodsList" data-type="1" >
- <view class="nr_boxs">
- <text>课程卡尔阅读</text>
- <text>course</text>
- </view>
- </view>
- <view class="course-buttonstow">
- <view class="course-button2" style="background-image: url({{homepage_6}}); background-size: cover;" bindtap="goToGoodsList" data-type="2">
- <view class="nr_boxs">
- <text>课程卡尔思维</text>
- <text>course</text>
- </view>
- </view>
- <view class="course-button2" bindtap="goToGoodsList" data-type="3" style="margin-top: 20rpx; background-image: url({{homepage_5}}); background-size: cover;">
- <view class="nr_boxs">
- <text>课程动手动脑</text>
- <text>course</text>
- </view>
- </view>
- <!-- <view class="course-button3">
- <view class="course-button" bindtap="selectGroupOption" data-option="teaching">
- <view class="nr_boxs">
- <text>课程动手动脑</text>
- <text>course</text>
- </view>
- </view>
- <view class="course-button" bindtap="selectGroupOption" data-option="large" style="margin-left: 20rpx;">
- <view class="nr_boxs">
- <text>展示</text>
- <text>course</text>
- </view>
- </view>
- </view> -->
- </view>
- </view>
- </view>
- </view>
|