diff --git a/src/goods-action-icon/index.js b/src/goods-action-icon/index.js index 27c982e7e..bd68f2990 100644 --- a/src/goods-action-icon/index.js +++ b/src/goods-action-icon/index.js @@ -11,6 +11,7 @@ export default createComponent({ props: { ...routeProps, + dot: Boolean, text: String, icon: String, color: String, @@ -31,7 +32,7 @@ export default createComponent({ return (
{slot} - +
); } @@ -40,6 +41,7 @@ export default createComponent({ - + @@ -92,6 +92,7 @@ Use `info` prop to show badge in icon | icon | Icon | *string* | - | | 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* | - | | url | Link | *string* | - | | to | Target route of the link, same as to of vue-router | *string \| object* | - | diff --git a/src/goods-action/README.zh-CN.md b/src/goods-action/README.zh-CN.md index 14b6a5578..40be9a19a 100644 --- a/src/goods-action/README.zh-CN.md +++ b/src/goods-action/README.zh-CN.md @@ -41,11 +41,11 @@ export default { ### 徽标提示 -通过`info`属性在图标右上角显示徽标 +在 GoodsActionIcon 组件上设置`dot`属性后,会在图标右上角展示一个小红点。设置`info`属性后,会在图标右上角展示相应的徽标 ```html - + @@ -96,6 +96,7 @@ export default { | icon | 图标 | *string* | - | | color `v2.4.2` | 图标颜色 | *string* | `#323233` | | icon-class | 图标额外类名 | *any* | - | +| dot `2.5.5` | 是否显示图标右上角小红点 | *boolean* | `false` | | info | 图标右上角徽标的内容 | *number \| string* | - | | url | 点击后跳转的链接地址 | *string* | - | | to | 点击后跳转的目标路由对象,同 vue-router 的 [to 属性](https://router.vuejs.org/zh/api/#to) | *string \| object* | - | diff --git a/src/goods-action/demo/index.vue b/src/goods-action/demo/index.vue index 046c72f18..33db3f440 100644 --- a/src/goods-action/demo/index.vue +++ b/src/goods-action/demo/index.vue @@ -27,7 +27,7 @@ - + diff --git a/src/goods-action/test/__snapshots__/demo.spec.js.snap b/src/goods-action/test/__snapshots__/demo.spec.js.snap index 1cc517051..4c36ac40d 100644 --- a/src/goods-action/test/__snapshots__/demo.spec.js.snap +++ b/src/goods-action/test/__snapshots__/demo.spec.js.snap @@ -20,7 +20,7 @@ exports[`renders demo correctly 1`] = `
- +
客服
diff --git a/src/goods-action/test/__snapshots__/index.spec.js.snap b/src/goods-action/test/__snapshots__/index.spec.js.snap index 1d3c01a30..0a7960e23 100644 --- a/src/goods-action/test/__snapshots__/index.spec.js.snap +++ b/src/goods-action/test/__snapshots__/index.spec.js.snap @@ -18,6 +18,13 @@ exports[`Icon render icon slot 1`] = `
`; +exports[`Icon render icon slot with dot 1`] = ` +
+
Custom Icon
+
Text +
+`; + exports[`Icon render icon slot with info 1`] = `
Custom Icon
1
diff --git a/src/goods-action/test/index.spec.js b/src/goods-action/test/index.spec.js index 4b475e61e..ae6554558 100644 --- a/src/goods-action/test/index.spec.js +++ b/src/goods-action/test/index.spec.js @@ -66,3 +66,21 @@ test('Icon render icon slot with info', () => { expect(wrapper).toMatchSnapshot(); }); + +test('Icon render icon slot with dot', () => { + const wrapper = mount({ + render(h) { + return h(Icon, { + props: { + dot: true, + }, + scopedSlots: { + default: () => 'Text', + icon: () => 'Custom Icon', + }, + }); + }, + }); + + expect(wrapper).toMatchSnapshot(); +});