feat(GridItem): add icon-color prop (#3386)

This commit is contained in:
agoni1212 2020-07-14 06:56:30 -05:00 committed by GitHub
parent 3a3999ccaa
commit 375eb64adc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,7 @@ VantComponent({
props: { props: {
icon: String, icon: String,
iconColor: String,
dot: Boolean, dot: Boolean,
info: null, info: null,
badge: null, badge: null,

View File

@ -10,7 +10,7 @@
</block> </block>
<block wx:else> <block wx:else>
<view class="van-grid-item__icon icon-class"> <view class="van-grid-item__icon icon-class">
<van-icon wx:if="{{ icon }}" name="{{ icon }}" dot="{{ dot }}" info="{{ badge || info }}" size="{{ iconSize }}" /> <van-icon wx:if="{{ icon }}" name="{{ icon }}" color="{{ iconColor }}" dot="{{ dot }}" info="{{ badge || info }}" size="{{ iconSize }}" />
<slot wx:else name="icon"></slot> <slot wx:else name="icon"></slot>
</view> </view>
<view class="van-grid-item__text text-class"> <view class="van-grid-item__text text-class">

View File

@ -149,6 +149,7 @@
| --- | --- | --- | --- | --- | | --- | --- | --- | --- | --- |
| text | 文字 | _string_ | - | - | | text | 文字 | _string_ | - | - |
| icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - | | icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - |
| icon-color | 图标颜色 | _string_ | - | - |
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` | - | | dot | 是否显示图标右上角小红点 | _boolean_ | `false` | - |
| badge | 图标右上角徽标的内容 | _string \| number_ | - | - | | badge | 图标右上角徽标的内容 | _string \| number_ | - | - |
| url | 点击后跳转的链接地址 | _string_ | - | - | | url | 点击后跳转的链接地址 | _string_ | - | - |