You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.3 KiB
Plaintext
80 lines
3.3 KiB
Plaintext
<view class='bt1'>
|
|
<view slot='header' class='f12 c065 pb16'>
|
|
请选择你的性别
|
|
</view>
|
|
<view class="">
|
|
|
|
<label class="checkbox display-flex pb8 bb1 pr16" data-index="1" bindtap="onCheckClickNan" key="1">
|
|
<view class="flex-1"> 男</view>
|
|
<radio color="#fe633f" value="1" checked="{{changeCheckboxNan}}"></radio>
|
|
</label>
|
|
</view>
|
|
<label class="checkbox display-flex pb8 bb1 mt16 pr16" data-index="2" bindtap="onCheckClickNv" key="2">
|
|
<view class="flex-1">女</view>
|
|
<radio color="#fe633f" value="2" checked="{{changeCheckboxNv}}"></radio>
|
|
</label>
|
|
|
|
<!-- <view class="weui-cells weui-cells_radio">
|
|
<radio-group class="radio-group" bindchange="radioChange">
|
|
<label class="weui-cell weui-cell_active weui-check__label" wx:for="{{items}}" wx:key="name">
|
|
<view class="weui-cell__bd">
|
|
<view>{{item.value}}</view>
|
|
</view>
|
|
<view class="weui-cell__ft">
|
|
<radio class="weui-check" value="{{item.name}}" checked="{{item.checked}}" />
|
|
<i class="weui-icon-checked"></i>
|
|
</view>
|
|
</label>
|
|
</radio-group>
|
|
</view> -->
|
|
<view slot='header' class='f12 mt16 c065'>
|
|
请选择你想找那些类型的工作
|
|
</view>
|
|
|
|
<!-- <view class="weui-cells__group weui-cells__group_form">
|
|
<radio-group class="radio-group" bindchange="radioChange2">
|
|
<label class="weui-cell weui-cell_active weui-check__label" wx:for="{{jobTypeArray}}" wx:key="name" bindtap="onCheckClick">
|
|
<view class="weui-cell__bd">
|
|
<view>{{item.name2}}</view>
|
|
</view>
|
|
<view class="weui-cell__ft">
|
|
<radio class="weui-check" checked="{{item.checked}}" />
|
|
<i class="weui-icon-checked"></i>
|
|
</view>
|
|
</label>
|
|
</radio-group>
|
|
</view> -->
|
|
|
|
|
|
<view class="weui-cells__group weui-cells__group_form">
|
|
<view class="weui-cells weui-cells_checkbox" style="margin-top:0;">
|
|
<checkbox-group bindchange="checkboxChange">
|
|
<label class="weui-cell weui-cell_active weui-check__label bb1" data-index="{{index}}" bindtap="onCheckClick" wx:for="{{jobTypeArray}}" wx:key="{{index}}">
|
|
<view class="weui-cell__hd">
|
|
|
|
<view style="font-size:16px;">{{item.name2}}</view>
|
|
|
|
</view>
|
|
<view class="weui-cell__bd tr pr16">
|
|
<radio value="{{item.value}}" checked="{{item.checked}}" color="#fe633f" />
|
|
<!-- <view>{{item.name2}}</view> -->
|
|
</view>
|
|
</label>
|
|
</checkbox-group>
|
|
|
|
</view>
|
|
</view>
|
|
|
|
<!-- <block wx:for='{{jobTypeArray}}' wx:key='{{index}}'>
|
|
<list-item data-index='{{index}}' value='{{checkValues[index]}}' key='items-{{index}}'
|
|
last='{{index === (items.length - 1)}}' bindclick='onCheckClick'>
|
|
{{item.name2}} <am-radio slot='extra' checked='{{item.checked}}'>
|
|
</am-radio>
|
|
</list-item>
|
|
</block> -->
|
|
<view class='mt20 tc'>
|
|
<button type='primary' class='w180' bindtap='goIndex'>
|
|
确定
|
|
</button>
|
|
</view>
|
|
</view> |