hobbyPicking.wxml 961 B

12345678910111213141516171819
  1. <!--pages/hobbyPicking/hobbyPicking.wxml-->
  2. <view>
  3. <!-- 标题 -->
  4. <view class="classify_skip">跳过</view>
  5. <view class="classify_topic">偏好选择</view>
  6. <!-- 展示分类 -->
  7. <view class="classify_list">
  8. <view class="categories" wx:for="{{classifyList}}" wx:key="Id">
  9. <view class="categories_card" bind:tap="detailClassifyTo" data-num='{{item.Id}}' data-title='{{item.Name}}'>
  10. <van-image width="90" height="90" fit="cover" src="{{item.Pic}}" />
  11. </view>
  12. <van-checkbox value="{{ item.checked }}" icon-size="25px" class="text" bind:change="onHobbyChange" data-id="{{item.Id}}">{{item.Name}}</van-checkbox>
  13. </view>
  14. </view>
  15. <!-- 确认按钮 -->
  16. <view>
  17. <van-button type="default" round color="linear-gradient(to right, #4bb0ff, #6149f6)" custom-style="width:80px;position:relative;left:{{left}};margin-top:15px;" bind:tap="initRecommendTap">确认</van-button>
  18. </view>
  19. </view>