diff --git a/packages/switch-cell/README.md b/packages/switch-cell/README.md index a293a027..978eb33a 100644 --- a/packages/switch-cell/README.md +++ b/packages/switch-cell/README.md @@ -62,13 +62,15 @@ Page({ | 参数 | 说明 | 类型 | 默认值 | |-----------|-----------|-----------|-------------| | name | 在表单内提交时的标识符 | `String` | - | -| checked | 开关状态 | `Boolean` | - | +| checked | 开关状态 | `any` | `false` | | title | 左侧标题 | `String` | `''` | | loading | 是否为加载状态 | `Boolean` | `false` | | disabled | 是否为禁用状态 | `Boolean` | `false` | | size | 开关尺寸 | `String` | `24px` | | active-color | 开关打开时的背景色 | `String` | `#1989fa` | | inactive-color | 开关关闭时的背景色 | `String` | `#fff` | +| active-value | 打开时的值 | `any` | `true` | +| inactive-value | 关闭时的值 | `any` | `false` | ### Event diff --git a/packages/switch-cell/index.ts b/packages/switch-cell/index.ts index fa864c04..f0ee4bd8 100644 --- a/packages/switch-cell/index.ts +++ b/packages/switch-cell/index.ts @@ -4,6 +4,7 @@ VantComponent({ field: true, props: { + value: null, title: String, border: Boolean, checked: Boolean, @@ -14,6 +15,14 @@ VantComponent({ size: { type: String, value: '24px' + }, + activeValue: { + type: null, + value: true + }, + inactiveValue: { + type: null, + value: false } }, diff --git a/packages/switch-cell/index.wxml b/packages/switch-cell/index.wxml index 38877c26..2fbd686c 100644 --- a/packages/switch-cell/index.wxml +++ b/packages/switch-cell/index.wxml @@ -11,6 +11,8 @@ disabled="{{ disabled }}" active-color="{{ activeColor }}" inactive-color="{{ inactiveColor }}" + active-value="{{ activeValue }}" + inactive-value="{{ inactiveValue }}" custom-class="van-switch-cell__switch" bind:change="onChange" /> diff --git a/packages/switch/README.md b/packages/switch/README.md index 875c885b..5eafd38e 100644 --- a/packages/switch/README.md +++ b/packages/switch/README.md @@ -92,7 +92,7 @@ Page({ | 参数 | 说明 | 类型 | 默认值 | |-----------|-----------|-----------|-------------| | name | 在表单内提交时的标识符 | `String` | - | -| checked | 开关选中状态 | `Boolean` | `false` | +| checked | 开关选中状态 | `any` | `false` | | loading | 是否为加载状态 | `Boolean` | `false` | | disabled | 是否为禁用状态 | `Boolean` | `false` | | size | 开关尺寸 | `String` | `30px` |