diff --git a/example/app.json b/example/app.json index 8577ac7f..c1f84519 100644 --- a/example/app.json +++ b/example/app.json @@ -47,7 +47,8 @@ "pages/grid/index", "pages/dropdown-menu/index", "pages/index-bar/index", - "pages/skeleton/index" + "pages/skeleton/index", + "pages/divider/index" ], "window": { "navigationBarBackgroundColor": "#f8f8f8", diff --git a/example/components/demo-home-nav/index.json b/example/components/demo-home-nav/index.json index c175daca..e9028886 100644 --- a/example/components/demo-home-nav/index.json +++ b/example/components/demo-home-nav/index.json @@ -1,6 +1,6 @@ { "component": true, "usingComponents": { - "van-icon": "../../dist/icon" + "van-icon": "../../dist/icon/index" } } diff --git a/example/components/demo-home-nav/index.wxss b/example/components/demo-home-nav/index.wxss index 691c6403..68f67d08 100644 --- a/example/components/demo-home-nav/index.wxss +++ b/example/components/demo-home-nav/index.wxss @@ -27,12 +27,12 @@ } .demo-home-nav__icon { - position: absolute; + position: absolute !important; top: 50%; right: 16px; width: 16px; height: 16px; margin-top: -8px; color: rgb(182, 195, 210); - font-weight: 900; + font-weight: 900 !important; } diff --git a/example/components/demo-home/index.json b/example/components/demo-home/index.json index 0b479242..18c6bf32 100644 --- a/example/components/demo-home/index.json +++ b/example/components/demo-home/index.json @@ -1,6 +1,6 @@ { "component": true, "usingComponents": { - "demo-home-nav": "../demo-home-nav" + "demo-home-nav": "../demo-home-nav/index" } } diff --git a/example/pages/card/index.js b/example/pages/card/index.js index 9e1b000f..bcbac713 100644 --- a/example/pages/card/index.js +++ b/example/pages/card/index.js @@ -2,6 +2,6 @@ import Page from '../../common/page'; Page({ data: { - imageURL: '//img.yzcdn.cn/upload_files/2017/07/02/af5b9f44deaeb68000d7e4a711160c53.jpg' + imageURL: 'https://img.yzcdn.cn/upload_files/2017/07/02/af5b9f44deaeb68000d7e4a711160c53.jpg' } }); diff --git a/example/pages/dashboard/index.json b/example/pages/dashboard/index.json index f377e714..ed94fc6f 100644 --- a/example/pages/dashboard/index.json +++ b/example/pages/dashboard/index.json @@ -1,6 +1,6 @@ { "navigationBarTitleText": "Vant Weapp", "usingComponents": { - "demo-home": "../../components/demo-home" + "demo-home": "../../components/demo-home/index" } } diff --git a/example/pages/goods-action/index.wxml b/example/pages/goods-action/index.wxml index ae97375b..9aa29e3f 100644 --- a/example/pages/goods-action/index.wxml +++ b/example/pages/goods-action/index.wxml @@ -1,5 +1,5 @@ - + - + @@ -33,7 +33,7 @@ - + @@ -42,7 +42,7 @@ - + diff --git a/example/pages/goods-action/index.wxss b/example/pages/goods-action/index.wxss index 0ff15223..cbed937e 100644 --- a/example/pages/goods-action/index.wxss +++ b/example/pages/goods-action/index.wxss @@ -1,3 +1,3 @@ -.goods-action { +.goods-action-position { position: relative !important; } diff --git a/example/pages/grid/index.js b/example/pages/grid/index.js index cc11dfda..d77b9563 100644 --- a/example/pages/grid/index.js +++ b/example/pages/grid/index.js @@ -1,3 +1,10 @@ import Page from '../../common/page'; -Page(); +Page({ + data: { + array3: [0, 1, 2], + array4: [0, 1, 2, 3], + array6: [0, 1, 2, 3, 4, 5], + array8: [0, 1, 2, 3, 4, 5, 6, 7], + }, +}); diff --git a/example/pages/grid/index.wxml b/example/pages/grid/index.wxml index 54e36837..e6f6cbfa 100644 --- a/example/pages/grid/index.wxml +++ b/example/pages/grid/index.wxml @@ -1,18 +1,18 @@ - + - + - + @@ -20,13 +20,13 @@ - + - + diff --git a/example/pages/submit-bar/index.wxml b/example/pages/submit-bar/index.wxml index 3aba6d13..6d92cd63 100644 --- a/example/pages/submit-bar/index.wxml +++ b/example/pages/submit-bar/index.wxml @@ -41,7 +41,7 @@ tip="{{ true }}" safe-area-inset-bottom="{{ false }}" > - 标签 + 标签 您的收货地址不支持同城送 修改地址 diff --git a/example/pages/submit-bar/index.wxss b/example/pages/submit-bar/index.wxss index 02230155..69a1d530 100644 --- a/example/pages/submit-bar/index.wxss +++ b/example/pages/submit-bar/index.wxss @@ -6,6 +6,6 @@ color: #1989fa; } -.van-tag { +.submit-tag { margin-left: 15px; } diff --git a/example/pages/tab/index.js b/example/pages/tab/index.js index fc197ca8..4860a035 100644 --- a/example/pages/tab/index.js +++ b/example/pages/tab/index.js @@ -2,8 +2,10 @@ import Page from '../../common/page'; Page({ data: { - tabs: [1, 2, 3, 4], - tabsMore: [1, 2, 3, 4, 5, 6, 7, 8], + tabs2: [1, 2], + tabs3: [1, 2, 3], + tabs4: [1, 2, 3, 4], + tabs6: [1, 2, 3, 4, 5, 6], tabsWithName: [ { name: 'a', index: 1 }, { name: 'b', index: 2 }, diff --git a/example/pages/tab/index.wxml b/example/pages/tab/index.wxml index 81d33a4e..2e696f04 100644 --- a/example/pages/tab/index.wxml +++ b/example/pages/tab/index.wxml @@ -1,7 +1,7 @@ @@ -30,7 +30,7 @@ @@ -44,7 +44,7 @@ @@ -73,7 +73,7 @@ @@ -87,7 +87,7 @@ @@ -101,7 +101,7 @@ @@ -115,7 +115,7 @@ @@ -135,7 +135,7 @@ bind:click="onClickNavRight" /> @@ -17,7 +17,7 @@ @@ -32,7 +32,7 @@ @@ -47,7 +47,7 @@ @@ -75,7 +75,7 @@ diff --git a/example/pages/tabbar/index.wxss b/example/pages/tabbar/index.wxss index 98ea1074..797459cd 100644 --- a/example/pages/tabbar/index.wxss +++ b/example/pages/tabbar/index.wxss @@ -1,3 +1,3 @@ -.tabbar { +.tabbar-position { position: relative !important; }