feat(grid): add new prop icon-size & badge (#3236)

fix #3223
This commit is contained in:
rex 2020-06-03 17:36:06 +08:00 committed by GitHub
parent d1cc1276ad
commit 29f1628c00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 5 deletions

View File

@ -46,6 +46,6 @@
<demo-block title="徽标提示">
<van-grid column-num="2">
<van-grid-item icon="home-o" text="文字" dot />
<van-grid-item icon="search" text="文字" info="99+" />
<van-grid-item icon="search" text="文字" badge="99+" />
</van-grid>
</demo-block>

View File

@ -17,6 +17,7 @@ VantComponent({
icon: String,
dot: Boolean,
info: null,
badge: null,
text: String,
useSlot: Boolean,
},
@ -44,6 +45,7 @@ VantComponent({
clickable,
center,
direction,
iconSize,
} = data;
const width = `${100 / columnNum}%`;
@ -85,6 +87,7 @@ VantComponent({
gutter,
clickable,
direction,
iconSize,
});
},

View File

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

View File

@ -100,12 +100,12 @@
### 提示信息
设置`dot`属性后,会在图标右上角展示一个小红点。设置`info`属性后,会在图标右上角展示相应的徽标
设置`dot`属性后,会在图标右上角展示一个小红点。设置`badge`属性后,会在图标右上角展示相应的徽标
```html
<van-grid column-num="2">
<van-grid-item icon="home-o" text="文字" dot />
<van-grid-item icon="search" text="文字" info="99+" />
<van-grid-item icon="search" text="文字" badge="99+" />
</van-grid>
```
@ -116,6 +116,7 @@
| 参数 | 说明 | 类型 | 默认值 | 版本 |
| --- | --- | --- | --- | --- |
| column-num | 列数 | _number_ | `4` | - |
| icon-size `v1.3.2` | 图标大小,默认单位为`px` | _string_ | `28px` |
| gutter | 格子之间的间距,默认单位为`px` | _string \| number_ | `0` | - |
| border | 是否显示边框 | _boolean_ | `true` | - |
| center | 是否将格子内容居中显示 | _boolean_ | `true` | - |
@ -136,7 +137,7 @@
| text | 文字 | _string_ | - | - |
| icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - |
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` | - |
| info | 图标右上角徽标的内容 | _string \| number_ | - | - |
| badge | 图标右上角徽标的内容 | _string \| number_ | - | - |
| url | 点击后跳转的链接地址 | _string_ | - | - |
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | _string_ | `navigateTo` | - |

View File

@ -41,6 +41,10 @@ VantComponent({
type: String,
observer: 'updateChildren',
},
iconSize: {
type: String,
observer: 'updateChildren',
},
},
data: {