mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
d1cc1276ad
commit
29f1628c00
@ -46,6 +46,6 @@
|
|||||||
<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="文字" badge="99+" />
|
||||||
</van-grid>
|
</van-grid>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
@ -17,6 +17,7 @@ VantComponent({
|
|||||||
icon: String,
|
icon: String,
|
||||||
dot: Boolean,
|
dot: Boolean,
|
||||||
info: null,
|
info: null,
|
||||||
|
badge: null,
|
||||||
text: String,
|
text: String,
|
||||||
useSlot: Boolean,
|
useSlot: Boolean,
|
||||||
},
|
},
|
||||||
@ -44,6 +45,7 @@ VantComponent({
|
|||||||
clickable,
|
clickable,
|
||||||
center,
|
center,
|
||||||
direction,
|
direction,
|
||||||
|
iconSize,
|
||||||
} = data;
|
} = data;
|
||||||
const width = `${100 / columnNum}%`;
|
const width = `${100 / columnNum}%`;
|
||||||
|
|
||||||
@ -85,6 +87,7 @@ VantComponent({
|
|||||||
gutter,
|
gutter,
|
||||||
clickable,
|
clickable,
|
||||||
direction,
|
direction,
|
||||||
|
iconSize,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -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="{{ info }}" />
|
<van-icon wx:if="{{ icon }}" name="{{ icon }}" 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">
|
||||||
|
@ -100,12 +100,12 @@
|
|||||||
|
|
||||||
### 提示信息
|
### 提示信息
|
||||||
|
|
||||||
设置`dot`属性后,会在图标右上角展示一个小红点。设置`info`属性后,会在图标右上角展示相应的徽标
|
设置`dot`属性后,会在图标右上角展示一个小红点。设置`badge`属性后,会在图标右上角展示相应的徽标
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<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="文字" badge="99+" />
|
||||||
</van-grid>
|
</van-grid>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -116,6 +116,7 @@
|
|||||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
| --- | --- | --- | --- | --- |
|
| --- | --- | --- | --- | --- |
|
||||||
| column-num | 列数 | _number_ | `4` | - |
|
| column-num | 列数 | _number_ | `4` | - |
|
||||||
|
| icon-size `v1.3.2` | 图标大小,默认单位为`px` | _string_ | `28px` |
|
||||||
| gutter | 格子之间的间距,默认单位为`px` | _string \| number_ | `0` | - |
|
| gutter | 格子之间的间距,默认单位为`px` | _string \| number_ | `0` | - |
|
||||||
| border | 是否显示边框 | _boolean_ | `true` | - |
|
| border | 是否显示边框 | _boolean_ | `true` | - |
|
||||||
| center | 是否将格子内容居中显示 | _boolean_ | `true` | - |
|
| center | 是否将格子内容居中显示 | _boolean_ | `true` | - |
|
||||||
@ -136,7 +137,7 @@
|
|||||||
| text | 文字 | _string_ | - | - |
|
| text | 文字 | _string_ | - | - |
|
||||||
| icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - |
|
| icon | 图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - |
|
||||||
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` | - |
|
| dot | 是否显示图标右上角小红点 | _boolean_ | `false` | - |
|
||||||
| info | 图标右上角徽标的内容 | _string \| number_ | - | - |
|
| badge | 图标右上角徽标的内容 | _string \| number_ | - | - |
|
||||||
| url | 点击后跳转的链接地址 | _string_ | - | - |
|
| url | 点击后跳转的链接地址 | _string_ | - | - |
|
||||||
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | _string_ | `navigateTo` | - |
|
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | _string_ | `navigateTo` | - |
|
||||||
|
|
||||||
|
@ -41,6 +41,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
observer: 'updateChildren',
|
observer: 'updateChildren',
|
||||||
},
|
},
|
||||||
|
iconSize: {
|
||||||
|
type: String,
|
||||||
|
observer: 'updateChildren',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user