您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

67 行
2.2 KiB

  1. <view id="BoxBg">
  2. <view class="Box">
  3. <navbar back text="分类" background="#0E1119" color="#fff"></navbar>
  4. <view style="height:{{navigationBarHeight}} "></view>
  5. <view class="searchBox">
  6. <view class="searchF">
  7. <input type="text" class="searchText" placeholder-style="color: #666666;" placeholder="搜索"
  8. bindconfirm="getLsit" bindinput="setSearchValue" confirm-type="search" />
  9. </view>
  10. </view>
  11. <view class="categoryBox oh">
  12. <view class="columnBox" style="top:{{navigationBarHeight2+200}}rpx">
  13. <view class=" {{activityFlag==index?'itemBox_a':'itemBox'}} oh" tt:for="{{column}}" bindtap="setActiviy"
  14. data-index="{{index}}" data-id="{{item.id}}">
  15. <view class="{{activityFlag==index?'Text_a':'Text'}}">
  16. {{item.title}}
  17. </view>
  18. </view>
  19. </view>
  20. <view class="courseBox">
  21. <view class="courseItemBox oh" tt:for="{{dataLsit}}" bindtap="goDetails" data-id="{{item.id}}" data-title="{{item.title}}">
  22. <image class="Img" src="{{item.coverImg}}" mode="" />
  23. <view class="TextBox">
  24. <view class="Name">
  25. {{item.title}}
  26. </view>
  27. <view class="chargeBox oh">
  28. <view class="tiem">
  29. {{item.countClass?item.countClass+'课时':'单课程'}}
  30. </view>
  31. <view class="money" tt:if="{{item.salePriceStr!=0}}">
  32. {{item.salePriceStr}}
  33. </view>
  34. <view class="py" tt:if="{{item.salePriceStr!=0}}">
  35. </view>
  36. <view class="money" tt:if="{{item.salePriceStr==0}}">
  37. {{"免费"}}
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>