diff --git a/packages/coupon-cell/index.js b/packages/coupon-cell/index.tsx similarity index 64% rename from packages/coupon-cell/index.js rename to packages/coupon-cell/index.tsx index 5943e3833..cd35898b1 100644 --- a/packages/coupon-cell/index.js +++ b/packages/coupon-cell/index.tsx @@ -2,9 +2,23 @@ import { use } from '../utils'; import { inherit } from '../utils/functional'; import Cell from '../cell'; +// Types +import { CreateElement, RenderContext } from 'vue/types'; +import { DefaultSlots } from '../utils/use/sfc'; +import { Coupon } from '../coupon/shared'; + +export type CouponCellProps = { + title?: string; + border: boolean; + coupons: Coupon[]; + currency: string; + editable: boolean; + chosenCoupon: number; +}; + const [sfc, bem, t] = use('coupon-cell'); -function formatValue(props) { +function formatValue(props: CouponCellProps) { const { coupons, chosenCoupon, currency } = props; const coupon = coupons[chosenCoupon]; @@ -16,8 +30,13 @@ function formatValue(props) { return coupons.length === 0 ? t('tips') : t('count', coupons.length); } -function CouponCell(h, props, slots, ctx) { - const valueClass = props[props.chosenCoupon] +function CouponCell( + h: CreateElement, + props: CouponCellProps, + slots: DefaultSlots, + ctx: RenderContext +) { + const valueClass = props.coupons[props.chosenCoupon] ? 'van-coupon-cell--selected' : ''; const value = formatValue(props); @@ -60,4 +79,4 @@ CouponCell.props = { } }; -export default sfc(CouponCell); +export default sfc(CouponCell); diff --git a/packages/coupon-list/test/__snapshots__/index.spec.js.snap b/packages/coupon-list/test/__snapshots__/index.spec.js.snap index 0ebc94f6f..7ae019022 100644 --- a/packages/coupon-list/test/__snapshots__/index.spec.js.snap +++ b/packages/coupon-list/test/__snapshots__/index.spec.js.snap @@ -11,7 +11,7 @@ exports[`render coupon cell 1`] = ` exports[`render coupon cell with coupon 1`] = `
优惠券
-
-¥1.00
+
-¥1.00
`; diff --git a/packages/coupon/shared.ts b/packages/coupon/shared.ts new file mode 100644 index 000000000..cdeb9d433 --- /dev/null +++ b/packages/coupon/shared.ts @@ -0,0 +1,14 @@ +export type Coupon = { + id: string; + name: string; + endAt: number; + value: number; + startAt: number; + reason?: string; + discount?: number; + unitDesc?: string; + condition?: string; + valueDesc?: string; + description: string; + denominations?: number; +}; diff --git a/packages/search/demo/index.vue b/packages/search/demo/index.vue index f30a7aecd..7492dbf2a 100644 --- a/packages/search/demo/index.vue +++ b/packages/search/demo/index.vue @@ -46,7 +46,7 @@ export default { title2: '监听对应事件', title3: '高级用法', placeholder: '请输入搜索关键词', - label: '收货地址' + label: '地址' }, 'en-US': { title2: 'Listen to Events', diff --git a/packages/search/en-US.md b/packages/search/en-US.md index f543a95ff..8e045495d 100644 --- a/packages/search/en-US.md +++ b/packages/search/en-US.md @@ -62,14 +62,14 @@ Search support all native properties of input tag,such as `maxlength`、`place | Attribute | Description | Type | Default | |------|------|------|------| +| label | Search label | `String` | - | +| shape | Can be set to `round` | `String` | `square` | | background | Background color | `String` | `#f2f2f2` | | show-action | Whether to show right button | `Boolean` | `false` | | disabled | Whether to disable field | `Boolean` | `false` | | readonly | Whether to be readonly | `Boolean` | `false` | | error | Whether to show error info | `Boolean` | `false` | | input-align | Input text align, can be set to `center` `right` | `String` | `left` | -| shape | Can be set to `round` | `String` | `square` | -| label | Search label | `String` | - | ### Event diff --git a/packages/search/index.js b/packages/search/index.js index de193915d..e332cc98b 100644 --- a/packages/search/index.js +++ b/packages/search/index.js @@ -8,6 +8,7 @@ export default sfc({ props: { value: String, + label: String, showAction: Boolean, shape: { type: String, @@ -16,8 +17,7 @@ export default sfc({ background: { type: String, default: '#ffffff' - }, - label: String + } }, computed: { diff --git a/packages/search/test/__snapshots__/demo.spec.js.snap b/packages/search/test/__snapshots__/demo.spec.js.snap index 576ebeb14..06e399545 100644 --- a/packages/search/test/__snapshots__/demo.spec.js.snap +++ b/packages/search/test/__snapshots__/demo.spec.js.snap @@ -36,7 +36,7 @@ exports[`renders demo correctly 1`] = `