mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
20 lines
525 B
Plaintext
20 lines
525 B
Plaintext
<view class="container">
|
|
|
|
<image class="logo" src="https://img.yzcdn.cn/public_files/2017/02/06/ee0ebced79a80457d77ce71c7d414c74.png"></image>
|
|
|
|
<block wx:for="{{ list }}" wx:for-item="group" wx:key="title">
|
|
<zan-panel title="{{ group.title }}">
|
|
<zan-cell-group>
|
|
<zan-cell
|
|
wx:for="{{ group.content }}"
|
|
wx:key="name"
|
|
is-link
|
|
url="{{ item.path }}"
|
|
title="{{ item.name }}"
|
|
></zan-cell>
|
|
</zan-cell-group>
|
|
</zan-panel>
|
|
</block>
|
|
|
|
</view>
|