diff --git a/packages/vant/docs/site/use-translate.ts b/packages/vant/docs/site/use-translate.ts index 164beef4f..c7afffa00 100644 --- a/packages/vant/docs/site/use-translate.ts +++ b/packages/vant/docs/site/use-translate.ts @@ -53,6 +53,7 @@ export function initDemoLocale() { disabled: '禁用状态', uneditable: '不可编辑', basicUsage: '基础用法', + checkboxUsage: '多选用法', usingUrl: '使用图片 URL', advancedUsage: '高级用法', loadingStatus: '加载状态', @@ -80,6 +81,7 @@ export function initDemoLocale() { disabled: 'Disabled', uneditable: 'Uneditable', basicUsage: 'Basic Usage', + checkboxUsage: 'Checkbox Usage', usingUrl: 'Using URL', advancedUsage: 'Advanced Usage', loadingStatus: 'Loading', diff --git a/packages/vant/src/coupon-cell/CouponCell.tsx b/packages/vant/src/coupon-cell/CouponCell.tsx index a61d2f58d..ace029421 100644 --- a/packages/vant/src/coupon-cell/CouponCell.tsx +++ b/packages/vant/src/coupon-cell/CouponCell.tsx @@ -6,7 +6,6 @@ import { truthProp, makeArrayProp, makeStringProp, - makeNumericProp, createNamespace, } from '../utils'; @@ -24,27 +23,47 @@ export const couponCellProps = { editable: truthProp, coupons: makeArrayProp(), currency: makeStringProp('¥'), - chosenCoupon: makeNumericProp(-1), + chosenCoupon: { + type: [Number, Array], + default: -1, + }, }; export type CouponCellProps = ExtractPropTypes; function formatValue({ coupons, chosenCoupon, currency }: CouponCellProps) { - const coupon = coupons[+chosenCoupon]; - - if (coupon) { + const getValue = (coupon: CouponInfo) => { let value = 0; - + const { value: couponValue, denominations } = coupon; if (isDef(coupon.value)) { - ({ value } = coupon); + value = couponValue; } else if (isDef(coupon.denominations)) { - value = coupon.denominations; + value = denominations as number; } + return value; + }; - return `-${currency} ${(value / 100).toFixed(2)}`; + let value = 0, + isExist = false; + if (Array.isArray(chosenCoupon)) { + (chosenCoupon as CouponInfo[]).forEach((i) => { + const coupon = coupons[+i]; + if (coupon) { + isExist = true; + value += getValue(coupon); + } + }); + } else { + const coupon = coupons[+chosenCoupon]; + if (coupon) { + isExist = true; + value = getValue(coupon); + } } - - return coupons.length === 0 ? t('noCoupon') : t('count', coupons.length); + if (!isExist) { + return coupons.length === 0 ? t('noCoupon') : t('count', coupons.length); + } + return `-${currency} ${(value / 100).toFixed(2)}`; } export default defineComponent({ @@ -54,7 +73,9 @@ export default defineComponent({ setup(props) { return () => { - const selected = props.coupons[+props.chosenCoupon]; + const selected = Array.isArray(props.chosenCoupon) + ? props.chosenCoupon.length + : props.coupons[+props.chosenCoupon]; return ( (), @@ -137,6 +138,19 @@ export default defineComponent({ const count = props.showCount ? ` (${coupons.length})` : ''; const title = (props.enabledTitle || t('enable')) + count; + const getChosenCoupon = ( + chosenCoupon: Array = [], + value: number = 0, + ): Array => { + const unrefChosenCoupon = unref(chosenCoupon); + const index = unrefChosenCoupon.indexOf(value); + if (index === -1) { + return [...unrefChosenCoupon, value]; + } + unrefChosenCoupon.splice(index, 1); + return [...unrefChosenCoupon]; + }; + return (
emit('change', index)} + onClick={() => + emit( + 'change', + Array.isArray(props.chosenCoupon) + ? getChosenCoupon(props.chosenCoupon, index) + : index, + ) + } /> ))} {!coupons.length && renderEmpty()} @@ -210,15 +235,21 @@ export default defineComponent({ {renderDisabledTab()}
-
); diff --git a/packages/vant/src/coupon-list/README.md b/packages/vant/src/coupon-list/README.md index 0a099792c..dffdc2295 100644 --- a/packages/vant/src/coupon-list/README.md +++ b/packages/vant/src/coupon-list/README.md @@ -104,7 +104,7 @@ export default { | Attribute | Description | Type | Default | | --- | --- | --- | --- | | v-model | Current exchange code | _string_ | - | -| chosen-coupon | Index of chosen coupon | _number_ | `-1` | +| chosen-coupon | Index of chosen coupon,support multiple selection(type `[]`) | _number\|number[]_ | `-1` | | coupons | Coupon list | _CouponInfo[]_ | `[]` | | disabled-coupons | Disabled coupon list | _CouponInfo[]_ | `[]` | | enabled-title | Title of coupon list | _string_ | `Available` | @@ -133,6 +133,7 @@ export default { | -------------------- | ------------------------------- | | list-footer | Coupon list bottom | | disabled-list-footer | Unavailable coupons list bottom | +| list-button | Customize the bottom button | ### Data Structure of CouponInfo diff --git a/packages/vant/src/coupon-list/README.zh-CN.md b/packages/vant/src/coupon-list/README.zh-CN.md index ee02795a4..d4abd8d78 100644 --- a/packages/vant/src/coupon-list/README.zh-CN.md +++ b/packages/vant/src/coupon-list/README.zh-CN.md @@ -104,7 +104,7 @@ export default { | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | v-model:code | 当前输入的兑换码 | _string_ | - | -| chosen-coupon | 当前选中优惠券的索引 | _number_ | `-1` | +| chosen-coupon | 当前选中优惠券的索引,支持多选(类型为`[]`) | _number\|number[]_ | `-1` | | coupons | 可用优惠券列表 | _CouponInfo[]_ | `[]` | | disabled-coupons | 不可用优惠券列表 | _CouponInfo[]_ | `[]` | | enabled-title | 可用优惠券列表标题 | _string_ | `可使用优惠券` | @@ -135,6 +135,7 @@ export default { | -------------------- | -------------------- | | list-footer | 优惠券列表底部 | | disabled-list-footer | 不可用优惠券列表底部 | +| list-button | 自定义底部按钮 | ### CouponInfo 数据结构 diff --git a/packages/vant/src/coupon-list/demo/index.vue b/packages/vant/src/coupon-list/demo/index.vue index 81498db63..27ba8caf6 100644 --- a/packages/vant/src/coupon-list/demo/index.vue +++ b/packages/vant/src/coupon-list/demo/index.vue @@ -1,8 +1,9 @@