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.
27 lines
719 B
27 lines
719 B
<scroll-view scroll-y style="height: 100vh;">
|
|
<view
|
|
wx:for="{{list}}"
|
|
wx:key="id"
|
|
class="list-item"
|
|
style="background-color: {{item.haveChildren ? 'lightblue' : 'white'}}"
|
|
data-index="{{index}}"
|
|
bindtap="toggleExpand"
|
|
data-id="{{item.id}}"
|
|
>
|
|
{{item.name}}{{item.haveChildren ? '▼' : '▶'}}
|
|
<view wx:if="{{item.haveChildren}}" class="sublist" >
|
|
<view
|
|
wx:for="{{item.children}}"
|
|
wx:for-item="child"
|
|
wx:key="id"
|
|
catchtap="handleItemClick"
|
|
class="sublist-item"
|
|
data-parent-index="{{index}}"
|
|
data-child-index="{{child}}"
|
|
|
|
>
|
|
{{child.name}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|