mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
3cf7ceebfb
commit
3a37327ec1
@ -30,6 +30,12 @@
|
|||||||
</van-grid>
|
</van-grid>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
|
<demo-block title="内容横排">
|
||||||
|
<van-grid direction="horizontal" column-num="3">
|
||||||
|
<van-grid-item icon="photo-o" text="文字" wx:for="{{ array3 }}" wx:key="*this" />
|
||||||
|
</van-grid>
|
||||||
|
</demo-block>
|
||||||
|
|
||||||
<demo-block title="页面跳转">
|
<demo-block title="页面跳转">
|
||||||
<van-grid clickable column-num="2">
|
<van-grid clickable column-num="2">
|
||||||
<van-grid-item icon="home-o" link-type="navigateTo" url="/pages/dashboard/index" text="Navigate 跳转" />
|
<van-grid-item icon="home-o" link-type="navigateTo" url="/pages/dashboard/index" text="Navigate 跳转" />
|
||||||
@ -37,7 +43,7 @@
|
|||||||
</van-grid>
|
</van-grid>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
<demo-block title="提示信息">
|
<demo-block title="徽标提示">
|
||||||
<van-grid column-num="2">
|
<van-grid column-num="2">
|
||||||
<van-grid-item icon="home-o" text="文字" dot />
|
<van-grid-item icon="home-o" text="文字" dot />
|
||||||
<van-grid-item icon="search" text="文字" info="99+" />
|
<van-grid-item icon="search" text="文字" info="99+" />
|
||||||
|
@ -41,13 +41,26 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--horizontal {
|
||||||
|
flex-direction: row;
|
||||||
|
|
||||||
|
.van-grid-item__icon + .van-grid-item__text {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-left: @padding-xs;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&--clickable:active {
|
&--clickable:active {
|
||||||
.theme(background-color, '@grid-item-content-active-color');
|
.theme(background-color, '@grid-item-content-active-color');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__icon {
|
&__icon {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
.theme(font-size, '@grid-item-icon-size');
|
.theme(font-size, '@grid-item-icon-size');
|
||||||
|
.theme(height, '@grid-item-icon-size');
|
||||||
}
|
}
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
|
@ -36,7 +36,15 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const { data, children } = this.parent;
|
const { data, children } = this.parent;
|
||||||
const { columnNum, border, square, gutter, clickable, center } = data;
|
const {
|
||||||
|
columnNum,
|
||||||
|
border,
|
||||||
|
square,
|
||||||
|
gutter,
|
||||||
|
clickable,
|
||||||
|
center,
|
||||||
|
direction,
|
||||||
|
} = data;
|
||||||
const width = `${100 / columnNum}%`;
|
const width = `${100 / columnNum}%`;
|
||||||
|
|
||||||
const styleWrapper = [];
|
const styleWrapper = [];
|
||||||
@ -76,6 +84,7 @@ VantComponent({
|
|||||||
square,
|
square,
|
||||||
gutter,
|
gutter,
|
||||||
clickable,
|
clickable,
|
||||||
|
direction,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<view class="custom-class {{ utils.bem('grid-item', { square }) }}" style="{{ viewStyle }}" bindtap="onClick">
|
<view class="custom-class {{ utils.bem('grid-item', { square }) }}" style="{{ viewStyle }}" bindtap="onClick">
|
||||||
<view
|
<view
|
||||||
class="content-class {{ utils.bem('grid-item__content', { center, square, clickable, surround: border && gutter }) }} {{ border ? 'van-hairline--surround' : '' }}"
|
class="content-class {{ utils.bem('grid-item__content', [direction, { center, square, clickable, surround: border && gutter }]) }} {{ border ? 'van-hairline--surround' : '' }}"
|
||||||
style="{{ contentStyle }}"
|
style="{{ contentStyle }}"
|
||||||
>
|
>
|
||||||
<block wx:if="{{ useSlot }}">
|
<block wx:if="{{ useSlot }}">
|
||||||
|
@ -37,6 +37,10 @@ VantComponent({
|
|||||||
value: true,
|
value: true,
|
||||||
observer: 'updateChildren',
|
observer: 'updateChildren',
|
||||||
},
|
},
|
||||||
|
direction: {
|
||||||
|
type: String,
|
||||||
|
observer: 'updateChildren',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user