From 69560f4fce7bb43d8fd7ebbfe0e3634fb1ed68b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Sun, 2 Feb 2020 22:30:47 +0800 Subject: [PATCH] feat(CouponCell): chosen-coupon can be string --- src/coupon-cell/index.tsx | 8 ++++---- src/coupon-list/README.md | 2 +- src/coupon-list/README.zh-CN.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/coupon-cell/index.tsx b/src/coupon-cell/index.tsx index f9346318e..dbad85936 100644 --- a/src/coupon-cell/index.tsx +++ b/src/coupon-cell/index.tsx @@ -16,14 +16,14 @@ export type CouponCellProps = { coupons: Coupon[]; currency: string; editable: boolean; - chosenCoupon: number; + chosenCoupon: number | string; }; const [createComponent, bem, t] = createNamespace('coupon-cell'); function formatValue(props: CouponCellProps) { const { coupons, chosenCoupon, currency } = props; - const coupon = coupons[chosenCoupon]; + const coupon = coupons[+chosenCoupon]; if (coupon) { const value = coupon.value || coupon.denominations || 0; @@ -39,7 +39,7 @@ function CouponCell( slots: DefaultSlots, ctx: RenderContext ) { - const valueClass = props.coupons[props.chosenCoupon] + const valueClass = props.coupons[+props.chosenCoupon] ? 'van-coupon-cell--selected' : ''; const value = formatValue(props); @@ -80,7 +80,7 @@ CouponCell.props = { default: true, }, chosenCoupon: { - type: Number, + type: [Number, String], default: -1, }, }; diff --git a/src/coupon-list/README.md b/src/coupon-list/README.md index 47c796bb6..fa3a38b8d 100644 --- a/src/coupon-list/README.md +++ b/src/coupon-list/README.md @@ -78,7 +78,7 @@ export default { | Attribute | Description | Type | Default | |------|------|------|------| | title | Cell title | *string* | `Coupon` | -| chosen-coupon | Index of chosen coupon | *number* | `-1` | +| chosen-coupon | Index of chosen coupon | *number \| string* | `-1` | | coupons | Coupon list | *Coupon[]* | `[]` | | editable | Cell editable | *boolean* | `true` | | border | Whether to show innner border | *boolean* | `true` | diff --git a/src/coupon-list/README.zh-CN.md b/src/coupon-list/README.zh-CN.md index 319dd3e38..7728f2fb5 100644 --- a/src/coupon-list/README.zh-CN.md +++ b/src/coupon-list/README.zh-CN.md @@ -78,7 +78,7 @@ export default { | 参数 | 说明 | 类型 | 默认值 | |------|------|------|------| | title | 单元格标题 | *string* | `优惠券` | -| chosen-coupon | 当前选中优惠券的索引 | *number* | `-1` | +| chosen-coupon | 当前选中优惠券的索引 | *number \| string* | `-1` | | coupons | 可用优惠券列表 | *Coupon[]* | `[]` | | editable | 能否切换优惠券 | *boolean* | `true` | | border | 是否显示内边框 | *boolean* | `true` |