Yao e4dfc9e48c
[new feature] Layout: 新增 layout 组件 (#43)
* change example dir

* Update README.md

更新预览教程

* 新增 layout 组件

* exclude example

* change .wxss -> .pcss

* 脚本目录更名为 scripts
2017-10-31 17:41:31 +08:00

16 lines
570 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">
<view class="zan-panel-title">{{ group.title }}</view>
<view class="zan-panel">
<navigator wx:for="{{ group.content }}" wx:key="name" class="zan-cell zan-cell--access" url="{{ item.path }}">
<view class="zan-cell__bd">{{ item.name }}</view>
<view class="zan-cell__ft"></view>
</navigator>
</view>
</block>
</view>