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.

19 lines
863 B
Plaintext

2 years ago
<!-- pages/changeGender/index.wxml -->
<view>
<radio-group class="radio-group" bindchange="radioChange" hover-class="none">
<label class="weui-cell weui-cell_active weui-check__label {{index == 0 ? 'bb1':''}}" hover-class="none" wx:for="{{items}}" wx:key="name" wx:for-index="index">
<view class="weui-cell__bd">
<view class="fw500">{{item.name}}</view>
</view>
<view class="weui-cell__ft">
<radio class="weui-check" value="{{item.value}}" checked="{{item.checked}}" />
<i class="iconfont icon-duihao ysd-base-color" wx:if="{{item.checked}}"></i>
</view>
</label>
</radio-group>
<navigator style="margin-top:90px" aria-role="button" hover-class="none" url="javascript:;" bindtap="formSubmit">
<button class="loginOut normalBtn" hover-class="thover">保存</button>
</navigator>
</view>