fix(GoodsActionIcon): info not work with icon slot (#5788)

This commit is contained in:
chenjiahan 2020-03-10 20:33:11 +08:00
parent 885a9e6ac7
commit f2e9e1931b
4 changed files with 36 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import { createNamespace } from '../utils'; import { createNamespace } from '../utils';
import { route, routeProps } from '../utils/router'; import { route, routeProps } from '../utils/router';
import { ChildrenMixin } from '../mixins/relation'; import { ChildrenMixin } from '../mixins/relation';
import Info from '../info';
import Icon from '../icon'; import Icon from '../icon';
const [createComponent, bem] = createNamespace('goods-action-icon'); const [createComponent, bem] = createNamespace('goods-action-icon');
@ -27,7 +28,12 @@ export default createComponent({
const slot = this.slots('icon'); const slot = this.slots('icon');
if (slot) { if (slot) {
return <div class={bem('icon')}>{slot}</div>; return (
<div class={bem('icon')}>
{slot}
<Info info={this.info} />
</div>
);
} }
return ( return (

View File

@ -18,6 +18,7 @@
} }
&__icon { &__icon {
position: relative;
width: 1em; width: 1em;
margin: 0 auto 5px; margin: 0 auto 5px;
color: @goods-action-icon-color; color: @goods-action-icon-color;

View File

@ -12,6 +12,15 @@ exports[`Icon render default slot 1`] = `
exports[`Icon render icon slot 1`] = ` exports[`Icon render icon slot 1`] = `
<div role="button" tabindex="0" class="van-goods-action-icon"> <div role="button" tabindex="0" class="van-goods-action-icon">
<div class="van-goods-action-icon__icon">Custom Icon</div>Text <div class="van-goods-action-icon__icon">Custom Icon
<!---->
</div>Text
</div>
`;
exports[`Icon render icon slot with info 1`] = `
<div role="button" tabindex="0" class="van-goods-action-icon">
<div class="van-goods-action-icon__icon">Custom Icon<div class="van-info">1</div>
</div>Text
</div> </div>
`; `;

View File

@ -48,3 +48,21 @@ test('Icon render icon slot', () => {
expect(wrapper).toMatchSnapshot(); expect(wrapper).toMatchSnapshot();
}); });
test('Icon render icon slot with info', () => {
const wrapper = mount({
render(h) {
return h(Icon, {
props: {
info: '1',
},
scopedSlots: {
default: () => 'Text',
icon: () => 'Custom Icon',
},
});
},
});
expect(wrapper).toMatchSnapshot();
});