mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[Doc] update demo index (#1539)
This commit is contained in:
parent
12a8300713
commit
2cef78313b
@ -13,7 +13,7 @@
|
|||||||
<script>
|
<script>
|
||||||
const PREFIX = 'https://img.yzcdn.cn/vant-weapp/';
|
const PREFIX = 'https://img.yzcdn.cn/vant-weapp/';
|
||||||
const MAP = {
|
const MAP = {
|
||||||
index: 'index-201808121630.png',
|
index: 'index-201904170551.png',
|
||||||
col: 'layout-201808092138.png',
|
col: 'layout-201808092138.png',
|
||||||
transition: 'transition-20180821.png'
|
transition: 'transition-20180821.png'
|
||||||
};
|
};
|
||||||
@ -33,7 +33,7 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
color: #333;
|
color: #333;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
background-color: #f8f8f8;
|
background-color: #f2f3f5;
|
||||||
font-family: 'PingFang SC', Helvetica, 'STHeiti STXihei', 'Microsoft YaHei',
|
font-family: 'PingFang SC', Helvetica, 'STHeiti STXihei', 'Microsoft YaHei',
|
||||||
Tohoma, Arial, sans-serif;
|
Tohoma, Arial, sans-serif;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
page {
|
page {
|
||||||
color: #333;
|
color: #333;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
background: #f8f8f8;
|
background: #f2f3f5;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 0 0 100rpx;
|
padding: 0 0 100rpx;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
groupName: '基础组件',
|
groupName: '基础组件',
|
||||||
|
icon: 'https://img.yzcdn.cn/vant/basic-0401.svg',
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
path: '/button',
|
path: '/button',
|
||||||
@ -30,6 +31,7 @@ export default [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
groupName: '表单组件',
|
groupName: '表单组件',
|
||||||
|
icon: 'https://img.yzcdn.cn/vant/form-0401.svg',
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
path: '/checkbox',
|
path: '/checkbox',
|
||||||
@ -79,6 +81,7 @@ export default [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
groupName: '反馈组件',
|
groupName: '反馈组件',
|
||||||
|
icon: 'passed',
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
path: '/action-sheet',
|
path: '/action-sheet',
|
||||||
@ -108,6 +111,7 @@ export default [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
groupName: '展示组件',
|
groupName: '展示组件',
|
||||||
|
icon: 'photo-o',
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
path: '/collapse',
|
path: '/collapse',
|
||||||
@ -141,6 +145,7 @@ export default [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
groupName: '导航组件',
|
groupName: '导航组件',
|
||||||
|
icon: 'https://img.yzcdn.cn/vant/nav-0401.svg',
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
path: '/badge',
|
path: '/badge',
|
||||||
@ -162,6 +167,7 @@ export default [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
groupName: '业务组件',
|
groupName: '业务组件',
|
||||||
|
icon: 'ellipsis',
|
||||||
list: [
|
list: [
|
||||||
{
|
{
|
||||||
path: '/area',
|
path: '/area',
|
||||||
|
@ -3,6 +3,13 @@ import Page from '../../common/page';
|
|||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
list
|
list,
|
||||||
|
activeName: []
|
||||||
|
},
|
||||||
|
|
||||||
|
onChangeCollapse(event) {
|
||||||
|
this.setData({
|
||||||
|
activeNames: event.detail
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -5,18 +5,35 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="desc">轻量、可靠的小程序 UI 组件库</view>
|
<view class="desc">轻量、可靠的小程序 UI 组件库</view>
|
||||||
|
|
||||||
<block wx:for="{{ list }}" wx:for-item="group" wx:key="group.title">
|
<van-collapse
|
||||||
<view class="mobile-nav">
|
wx:for="{{ list }}"
|
||||||
<view class="mobile-nav__title">{{ group.groupName }}</view>
|
wx:for-item="group"
|
||||||
<van-cell-group>
|
wx:key="group.title"
|
||||||
<van-cell
|
value="{{ activeNames }}"
|
||||||
wx:for="{{ group.list }}"
|
border="{{ false }}"
|
||||||
wx:key="item.title"
|
bind:change="onChangeCollapse"
|
||||||
is-link
|
>
|
||||||
url="/pages{{ item.path }}/index"
|
<van-collapse-item
|
||||||
title="{{ item.title }}"
|
clickable
|
||||||
></van-cell>
|
is-link="{{ false }}"
|
||||||
</van-cell-group>
|
custom-class="mobile-nav"
|
||||||
</view>
|
title-class="mobile-nav__title"
|
||||||
</block>
|
content-class="mobile-nav__content"
|
||||||
|
title="{{ group.groupName }}"
|
||||||
|
name="{{ group.groupName }}"
|
||||||
|
>
|
||||||
|
<van-icon
|
||||||
|
name="{{ group.icon }}"
|
||||||
|
slot="right-icon"
|
||||||
|
custom-class="mobile-nav__icon"
|
||||||
|
/>
|
||||||
|
<van-cell
|
||||||
|
wx:for="{{ group.list }}"
|
||||||
|
wx:key="item.title"
|
||||||
|
is-link
|
||||||
|
url="/pages{{ item.path }}/index"
|
||||||
|
title="{{ item.title }}"
|
||||||
|
/>
|
||||||
|
</van-collapse-item>
|
||||||
|
</van-collapse>
|
||||||
</view>
|
</view>
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
|
page {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
padding: 45px 15px 0;
|
padding: 45px 20px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
margin: 0 0 15px;
|
padding-left: 15px;
|
||||||
text-align: center;
|
margin-bottom: 10px;
|
||||||
user-select: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo,
|
.logo,
|
||||||
@ -16,9 +19,8 @@
|
|||||||
|
|
||||||
.title-text {
|
.title-text {
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
|
font-weight: 500;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
font-weight: 400;
|
|
||||||
font-family: "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
@ -28,17 +30,32 @@
|
|||||||
|
|
||||||
.desc {
|
.desc {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #455a64;
|
color: #7d7e80;
|
||||||
margin: 0 0 60px;
|
margin: 0 0 45px;
|
||||||
text-align: center;
|
padding-left: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-nav {
|
.mobile-nav {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-nav__title {
|
.mobile-nav__title {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
background-color: #fff;
|
font-weight: 500;
|
||||||
padding: 17px 15px;
|
line-height: 40px;
|
||||||
|
align-items: center;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-nav__content {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-nav__icon {
|
||||||
|
font-size: 24px !important;
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobile-nav__icon image {
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
page {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.col {
|
.col {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user