fix(CouponCell): discounted value (#7196)

* fix(CouponCell): discounted value

* feat(CouponCell): add unit test

* feat(CouponCell): add unit test
This commit is contained in:
Lindy 2020-09-18 11:29:34 +08:00 committed by GitHub
parent d541724bfc
commit e026a5614d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 3 deletions

View File

@ -30,9 +30,7 @@ function formatValue(props: CouponCellProps) {
if (isDef(coupon.value)) {
({ value } = coupon);
}
if (isDef(coupon.denominations)) {
} else if (isDef(coupon.denominations)) {
value = coupon.denominations;
}

View File

@ -54,6 +54,15 @@ exports[`render coupon cell with coupon 1`] = `
</div>
`;
exports[`render coupon cell with zero discount 1`] = `
<div role="button" tabindex="0" class="van-cell van-cell--clickable van-coupon-cell">
<div class="van-cell__title"><span>优惠券</span></div>
<div class="van-cell__value van-coupon-cell__value van-coupon-cell__value--selected"><span>-¥ 0.00</span></div><i class="van-icon van-icon-arrow van-cell__right-icon">
<!----></i>
</div>
`;
exports[`render coupon list 1`] = `
<div class="van-coupon-list">
<div class="van-coupon-list__exchange-bar">

View File

@ -26,6 +26,12 @@ const coupon3 = {
denominations: 123,
};
const coupon4 = {
...coupon,
startAt: 1600327871,
endAt: 1700327871,
};
const emptyCoupon = {
id: 0,
discount: 0,
@ -162,3 +168,13 @@ test('render coupon cell with coupon', () => {
});
expect(wrapper).toMatchSnapshot();
});
test('render coupon cell with zero discount', () => {
const wrapper = mount(CouponCell, {
propsData: {
coupons: [{ ...coupon4, value: 0, denominations: 150 }],
chosenCoupon: 0,
},
});
expect(wrapper).toMatchSnapshot();
});