业务交流通
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

myAttention.wxml 1.4KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!-- pages/myModule/components/myCollect/myAttention.wxml -->
  2. <view class="my-attention-page page-container">
  3. <view class="list-loading text-center" wx:if="{{ pageLoading }}">
  4. <van-loading size="24px">加载中...</van-loading>
  5. </view>
  6. <view wx:else>
  7. <view class="attention-view">
  8. <view class="attention-title-view">
  9. 你关注的类型
  10. <text class="sub-title">(最多可选5项)</text>
  11. </view>
  12. <view class="attention-info">选择后,平台推荐将更符合你的偏好</view>
  13. <view class="types-box">
  14. <van-row class="attention-types-view clearfix" gutter="15">
  15. <van-col span="8" class="attention-type" wx:for="{{ types }}" wx:key="index">
  16. <view class="item-type {{ item.isActive ? 'isActive' : '' }}" bindtap="changeTags" data-typename="{{ item.typeName }}">
  17. {{ item.typeName }}
  18. </view>
  19. </van-col>
  20. </van-row>
  21. </view>
  22. </view>
  23. <view class="submit-btn">
  24. <van-button
  25. block
  26. color="#5e73e5"
  27. round
  28. disabled="{{ selectedTags.length < 1 }}"
  29. bind:click="setAttentionTypeIds"
  30. >
  31. 保存
  32. </van-button>
  33. </view>
  34. </view>
  35. </view>