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.
21 lines
806 B
Plaintext
21 lines
806 B
Plaintext
<form catchsubmit="formSubmit">
|
|
<view class="weui-cells__group weui-cells__group_form p10 noTopBorder">
|
|
<view class="weui-cells weui-cells_radio mt0 br8 noTopBorder">
|
|
<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}}" />
|
|
<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> |