1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 08:48:06 +08:00
2023-11-20 22:33:20 +08:00

14 lines
559 B
Plaintext

<import src="../../app.wxml"/>
<view class="page river">
<template is="action" data="{{action}}"></template>
<template is="debug" data="{{conf}}"></template>
<view class="output">
<view class="item" wx:for="{{list}}" wx:key="index">
<view class="item" bindtap="ondetail" data-index="{{index}}">{{item.name}}</view>
<view class="list" wx:if="{{item._show}}">
<view class="item" wx:for="{{item.list}}" wx:for-index="i" wx:key="i" bindtap="onchange" data-index="{{index}}" data-i="{{i}}">{{item.name}}</view>
</view>
</view>
</view>
</view>