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.

22 lines
798 B
Plaintext

2 years ago
<form catchsubmit="formSubmit">
<view class="weui-cells__group weui-cells__group_form p10">
<view class="weui-cells weui-cells_radio br8 mt0">
<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.name}}</view>
</view>
<view class="weui-cell__ft">
<radio class="weui-check" value="{{item.value}}" checked="{{item.checked}}" color="#027AFF"/>
<i class="weui-icon-checked"></i>
</view>
</label>
</radio-group>
</view>
</view>
<button type='primary' class="loginOut" formType="submit" style="font-weight:400;margin-top:70px;margin-bottom:30px;">
保存
</button>
</form>