index.wxml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <view class="order-group">
  2. <t-cell-group wx:if="{{isTop}}">
  3. <t-cell
  4. t-class="order-group__top"
  5. t-class-left="order-group__left"
  6. t-class-title="order-group__top__title"
  7. t-class-note="order-group__top__note"
  8. title="{{title}}"
  9. note="{{desc}}"
  10. bordered="{{false}}"
  11. arrow
  12. bind:tap="onClickTop"
  13. />
  14. </t-cell-group>
  15. <view class="order-group__content">
  16. <view
  17. class="order-group__item"
  18. wx:for="{{orderTagInfos}}"
  19. wx:for-item="item"
  20. wx:key="index"
  21. data-item="{{item}}"
  22. bindtap="onClickItem"
  23. >
  24. <view class="order-group__item__icon icon-class">
  25. <t-badge count="{{item.orderNum}}" max-count="{{99}}" color="#FF4646">
  26. <t-icon
  27. prefix="{{classPrefix}}"
  28. name="{{item.iconName}}"
  29. size="56rpx"
  30. customStyle="background-image: -webkit-linear-gradient(90deg, #6a6a6a 0%,#929292 100%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;"
  31. />
  32. </t-badge>
  33. </view>
  34. <view class="order-group__item__title title-class">{{item.title}}</view>
  35. </view>
  36. </view>
  37. </view>