123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <view style="background: #f5f5f5; padding: 20rpx 0;">
- <view class="container">
- <!-- <button bindtap="getData">点击</button> -->
- <!-- 搜索 -->
- <view class="search-bar">
- <input class="search-input" placeholder="搜索课件" />
- <image class="search-icon" src="{{souimg}}" />
- </view>
-
- <!-- 空白区域 -->
- <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" bindtap="selectGroupOption" data-option="dahome" style="background-image: url({{homepage_8}}); background-size: cover;">
- <view class="nr_boxs">
- <text>全脑智能开发答案</text>
- <text>course</text>
- </view>
- </view>
- <view class="course-button1" bindtap="selectGroupOption" data-option="imghome" style="margin-left: 20rpx; background-image: url({{homepage_9}}); background-size: cover;">
- <view class="nr_boxs">
- <text>动手动脑图库</text>
- <text>course</text>
- </view>
- </view>
- <!-- <view class="course-buttonstow">
- <view class="course-button2" bindtap="selectGroupOption" data-option="training">
- <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>
- <!-- <button bindtap="getData">提交图片</button> -->
- </view>
- </view>
|