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.
31 lines
990 B
Plaintext
31 lines
990 B
Plaintext
<view class>
|
|
<am-list>
|
|
<block wx:for='{{labelItems}}' wx:key='{{index}}'>
|
|
<list-item value='{{item.id}}' key='item-{{index}}' data-index='{{index}}' last='{{index === (item.length - 1)}}'
|
|
bindtap='onCheckClick'>
|
|
<view class="am-list-item">
|
|
<view class="am-list-prefix"></view>
|
|
<view class="am-list-line">
|
|
<view class="am-list-content">
|
|
<view class="am-list-content-title">
|
|
<view class="am-list-text-wrapper am-list-text-wrapper__fix">
|
|
{{item.name}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="am-list-extra">
|
|
<radio slot='extra' color="#fe633f" checked='{{item.checked}}'>
|
|
</radio>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</list-item>
|
|
</block>
|
|
</am-list>
|
|
<view class='mt20 tc'>
|
|
<button type='primary' class='w180' bindtap='goIndex'>
|
|
确定
|
|
</button>
|
|
</view>
|
|
</view> |