diff --git a/src/goods-action-icon/index.js b/src/goods-action-icon/index.js
index bd68f2990..b9bb118dc 100644
--- a/src/goods-action-icon/index.js
+++ b/src/goods-action-icon/index.js
@@ -1,4 +1,4 @@
-import { createNamespace } from '../utils';
+import { createNamespace, isDef } from '../utils';
import { route, routeProps } from '../utils/router';
import { ChildrenMixin } from '../mixins/relation';
import Info from '../info';
@@ -16,6 +16,7 @@ export default createComponent({
icon: String,
color: String,
info: [Number, String],
+ badge: [Number, String],
iconClass: null,
},
@@ -27,12 +28,13 @@ export default createComponent({
genIcon() {
const slot = this.slots('icon');
+ const info = isDef(this.badge) ? this.badge : this.info;
if (slot) {
return (
{slot}
-
+
);
}
@@ -42,7 +44,7 @@ export default createComponent({
class={[bem('icon'), this.iconClass]}
tag="div"
dot={this.dot}
- info={this.info}
+ info={info}
name={this.icon}
color={this.color}
/>
diff --git a/src/goods-action/README.md b/src/goods-action/README.md
index 196116f6c..714c2e1ce 100644
--- a/src/goods-action/README.md
+++ b/src/goods-action/README.md
@@ -39,15 +39,15 @@ export default {
}
```
-### Icon info
+### Icon Badge
-Use `info` prop to show badge in icon
+Use `badge` prop to show badge in icon
```html
-
-
+
+
@@ -93,7 +93,7 @@ Use `info` prop to show badge in icon
| color `v2.4.2` | Icon color | *string* | `#323233` |
| icon-class | Icon class name | *any* | `''` |
| dot `2.5.5` | Whether to show red dot | *boolean* | - |
-| info | Content of the badge | *number \| string* | - |
+| badge `2.5.6` | Content of the badge | *number \| string* | - |
| url | Link | *string* | - |
| to | Target route of the link, same as to of vue-router | *string \| object* | - |
| replace | If true, the navigation will not leave a history record | *boolean* | `false` |
diff --git a/src/goods-action/README.zh-CN.md b/src/goods-action/README.zh-CN.md
index 40be9a19a..ef152f087 100644
--- a/src/goods-action/README.zh-CN.md
+++ b/src/goods-action/README.zh-CN.md
@@ -41,13 +41,13 @@ export default {
### 徽标提示
-在 GoodsActionIcon 组件上设置`dot`属性后,会在图标右上角展示一个小红点。设置`info`属性后,会在图标右上角展示相应的徽标
+在 GoodsActionIcon 组件上设置`dot`属性后,会在图标右上角展示一个小红点。设置`badge`属性后,会在图标右上角展示相应的徽标
```html
-
-
+
+
@@ -97,7 +97,8 @@ export default {
| color `v2.4.2` | 图标颜色 | *string* | `#323233` |
| icon-class | 图标额外类名 | *any* | - |
| dot `2.5.5` | 是否显示图标右上角小红点 | *boolean* | `false` |
-| info | 图标右上角徽标的内容 | *number \| string* | - |
+| badge `v2.5.6` | 图标右上角徽标的内容 | *number \| string* | - |
+| info | 图标右上角徽标的内容(已废弃,请使用 badge 属性) | *number \| string* | - |
| url | 点击后跳转的链接地址 | *string* | - |
| to | 点击后跳转的目标路由对象,同 vue-router 的 [to 属性](https://router.vuejs.org/zh/api/#to) | *string \| object* | - |
| replace | 是否在跳转时替换当前页面历史 | *boolean* | `false` |
diff --git a/src/goods-action/demo/index.vue b/src/goods-action/demo/index.vue
index 33db3f440..a957bdd34 100644
--- a/src/goods-action/demo/index.vue
+++ b/src/goods-action/demo/index.vue
@@ -25,11 +25,11 @@
-
+
-
-
+
+
@@ -81,7 +81,7 @@ export default {
icon3: '店铺',
button1: '加入购物车',
button2: '立即购买',
- iconInfo: '徽标提示',
+ iconBadge: '徽标提示',
collected: '已收藏',
clickIcon: '点击图标',
clickButton: '点击按钮',
@@ -94,7 +94,7 @@ export default {
icon3: 'Icon3',
button1: 'Button1',
button2: 'Button2',
- iconInfo: 'Icon info',
+ iconBadge: 'Icon Badge',
collected: 'Collected',
clickIcon: 'Click Icon',
clickButton: 'Click Button',