You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
393 B

<!--pages/test/radio.wxml-->
<text>pages/test/radio.wxml</text>
<view class="demobox">
<view class="title">使用数组批量生成选项</view>
<radio-group bindchange="radiochange">
<view class="test" wx:for="{{radioitems}}" wx:key="index">
<radio value="{{item.value}}" checked="{{item.checked}}">{{item.name}}</radio>
</view>
</radio-group>
</view>