12345678910111213141516171819 |
- <!--pages/hobbyPicking/hobbyPicking.wxml-->
- <view>
- <!-- 标题 -->
- <view class="classify_skip">跳过</view>
- <view class="classify_topic">偏好选择</view>
- <!-- 展示分类 -->
- <view class="classify_list">
- <view class="categories" wx:for="{{classifyList}}" wx:key="Id">
- <view class="categories_card" bind:tap="detailClassifyTo" data-num='{{item.Id}}' data-title='{{item.Name}}'>
- <van-image width="90" height="90" fit="cover" src="{{item.Pic}}" />
- </view>
- <van-checkbox value="{{ item.checked }}" icon-size="25px" class="text" bind:change="onHobbyChange" data-id="{{item.Id}}">{{item.Name}}</van-checkbox>
- </view>
- </view>
- <!-- 确认按钮 -->
- <view>
- <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>
- </view>
- </view>
|