index.wxml 2.2 KB

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