index.wxml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <view style="background: #f5f5f5; padding: 20rpx 0;">
  2. <view class="container">
  3. <!-- 搜索 -->
  4. <view class="search-bar">
  5. <input class="search-input" placeholder="搜索课件" />
  6. <image class="search-icon" src="{{souimg}}" />
  7. </view>
  8. <!-- 空白区域 -->
  9. <view class="empty-space">
  10. <swiper style="width: 100%; height: 100%;" autoplay="true" interval="3000" circular>
  11. <block wx:for="{{carousellist}}" wx:key="index">
  12. <swiper-item>
  13. <image style="width: 100%; height: 100%;" src="{{item.url}}" mode="aspectFill" />
  14. </swiper-item>
  15. </block>
  16. </swiper>
  17. </view>
  18. <!-- 课程分类按钮 -->
  19. <view class="course-buttons">
  20. <view class="course-button1" style="background-image: url({{homepage_4}}); background-size: cover;" bindtap="selectGroupOption" data-option="course">
  21. <view class="nr_boxs">
  22. <text>课程</text>
  23. <text>course</text>
  24. </view>
  25. </view>
  26. <view class="course-buttonstow">
  27. <view class="course-button2" bindtap="selectGroupOption" data-option="training" style="background-image: url({{homepage_3}}); background-size: cover;">
  28. <view class="nr_boxs">
  29. <text>培训</text>
  30. <text>course</text>
  31. </view>
  32. </view>
  33. <view class="course-button3">
  34. <view class="course-button" bindtap="selectGroupOption" data-option="teaching" style="background-image: url({{homepage_2}}); background-size: cover;">
  35. <view class="nr_boxs">
  36. <text>教学</text>
  37. <text>course</text>
  38. </view>
  39. </view>
  40. <view class="course-button" bindtap="selectGroupOption" data-option="large" style="margin-left: 20rpx; background-image: url({{homepage_1}}); background-size: cover;">
  41. <view class="nr_boxs">
  42. <text>展示</text>
  43. <text>course</text>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <!-- Vant Weapp 弹框 -->
  52. <!-- <van-dialog id="van-dialog" /> -->