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.
29 lines
786 B
29 lines
786 B
<scroll-view scroll-y style="height: 100vh;">
|
|
<view
|
|
wx:for="{{children}}"
|
|
wx:key="id"
|
|
class="list-item"
|
|
data-index="{{index}}"
|
|
bindtap="toggleExpand"
|
|
data-id="{{item.id}}"
|
|
data-have="{{item.haveChildren}}"
|
|
>
|
|
<!-- style="background-color: {{item.haveChildren ? 'lightblue' : 'white'}}" -->
|
|
<!-- {{item.haveChildren ? '▼' : '▶'}} -->
|
|
{{item.name}}
|
|
<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>
|