[new feature] SwitchCell: add active-value & inactive-value prop (#1298)

This commit is contained in:
neverland 2019-02-13 16:52:55 +08:00 committed by GitHub
parent 1dd9218a67
commit cbdccdf820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 2 deletions

View File

@ -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

View File

@ -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
}
},

View File

@ -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"
/>

View File

@ -92,7 +92,7 @@ Page({
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|
| name | 在表单内提交时的标识符 | `String` | - |
| checked | 开关选中状态 | `Boolean` | `false` |
| checked | 开关选中状态 | `any` | `false` |
| loading | 是否为加载状态 | `Boolean` | `false` |
| disabled | 是否为禁用状态 | `Boolean` | `false` |
| size | 开关尺寸 | `String` | `30px` |