mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
调整
This commit is contained in:
parent
9b761bd032
commit
eb89c6fbc8
@ -2,6 +2,57 @@ var app = getApp()
|
|||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
name: 'Badge',
|
||||||
|
path: '/example/badge/index'
|
||||||
|
}, {
|
||||||
|
name: 'Button',
|
||||||
|
path: '/example/btn/index'
|
||||||
|
}, {
|
||||||
|
name: 'Cell',
|
||||||
|
path: '/example/cell/index'
|
||||||
|
}, {
|
||||||
|
name: 'Dialog',
|
||||||
|
path: '/example/dialog/index'
|
||||||
|
}, {
|
||||||
|
name: 'Form',
|
||||||
|
path: '/example/form/index'
|
||||||
|
}, {
|
||||||
|
name: 'Helper',
|
||||||
|
path: '/example/helper/index'
|
||||||
|
}, {
|
||||||
|
name: 'Icon',
|
||||||
|
path: '/example/icon/index'
|
||||||
|
}, {
|
||||||
|
name: 'Label',
|
||||||
|
path: '/example/label/index'
|
||||||
|
}, {
|
||||||
|
name: 'Loadmore',
|
||||||
|
path: '/example/loadmore/index'
|
||||||
|
}, {
|
||||||
|
name: 'Namecard',
|
||||||
|
path: '/example/namecard/index'
|
||||||
|
}, {
|
||||||
|
name: 'Panel',
|
||||||
|
path: '/example/panel/index'
|
||||||
|
}, {
|
||||||
|
name: 'Quantity',
|
||||||
|
path: '/example/quantity/index'
|
||||||
|
}, {
|
||||||
|
name: 'Steps',
|
||||||
|
path: '/example/steps/index'
|
||||||
|
}, {
|
||||||
|
name: 'Tab',
|
||||||
|
path: '/example/tab/index'
|
||||||
|
}, {
|
||||||
|
name: 'Toast',
|
||||||
|
path: '/example/toast/index'
|
||||||
|
}, {
|
||||||
|
name: 'Toptips',
|
||||||
|
path: '/example/toptips/index'
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
onLoad: function () {
|
onLoad: function () {
|
||||||
|
@ -1,68 +1,8 @@
|
|||||||
<view class="container">
|
<view class="container">
|
||||||
|
|
||||||
<view class="zui-panel">
|
<view class="zui-panel">
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/btn/index">
|
<navigator wx:for="{{ list }}" wx:key="name" class="zui-cell zui-cell--access" url="{{ item.path }}">
|
||||||
<view class="zui-cell__bd">Button</view>
|
<view class="zui-cell__bd">{{ item.name }}</view>
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/icon/index">
|
|
||||||
<view class="zui-cell__bd">Icon</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/loadmore/index">
|
|
||||||
<view class="zui-cell__bd">Loadmore</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/panel/index">
|
|
||||||
<view class="zui-cell__bd">Panel</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/cell/index">
|
|
||||||
<view class="zui-cell__bd">Cell</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/badge/index">
|
|
||||||
<view class="zui-cell__bd">Badge</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/tab/index">
|
|
||||||
<view class="zui-cell__bd">Tab</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/label/index">
|
|
||||||
<view class="zui-cell__bd">Label</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/helper/index">
|
|
||||||
<view class="zui-cell__bd">Helper</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/form/index">
|
|
||||||
<view class="zui-cell__bd">Form</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/namecard/index">
|
|
||||||
<view class="zui-cell__bd">Namecard</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/quantity/index">
|
|
||||||
<view class="zui-cell__bd">Quantity</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/dialog/index">
|
|
||||||
<view class="zui-cell__bd">Dialog</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/toptips/index">
|
|
||||||
<view class="zui-cell__bd">Toptips</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access" url="/example/steps/index">
|
|
||||||
<view class="zui-cell__bd">Steps</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
|
||||||
</navigator>
|
|
||||||
<navigator class="zui-cell zui-cell--access zui-cell--last-child" url="/example/toast/index">
|
|
||||||
<view class="zui-cell__bd">Toast</view>
|
|
||||||
<view class="zui-cell__ft"></view>
|
<view class="zui-cell__ft"></view>
|
||||||
</navigator>
|
</navigator>
|
||||||
</view>
|
</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user