feat(Picker): adjust default value of visible-item-count to 6 (#3418)

This commit is contained in:
neverland 2020-07-21 14:16:10 +08:00 committed by GitHub
parent 40072f6d4c
commit 4426a4ef80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ db.collection('region')
| columns-placeholder | 列占位提示文字 | _string[]_ | `[]` | - | | columns-placeholder | 列占位提示文字 | _string[]_ | `[]` | - |
| loading | 是否显示加载状态 | _boolean_ | `false` | - | | loading | 是否显示加载状态 | _boolean_ | `false` | - |
| item-height | 选项高度 | _number_ | `44` | - | | item-height | 选项高度 | _number_ | `44` | - |
| visible-item-count | 可见的选项个数 | _number_ | `5` | - | | visible-item-count | 可见的选项个数 | _number_ | `6` | - |
| confirm-button-text | 确认按钮文字 | _string_ | `确认` | - | | confirm-button-text | 确认按钮文字 | _string_ | `确认` | - |
| cancel-button-text | 取消按钮文字 | _string_ | `取消` | - | | cancel-button-text | 取消按钮文字 | _string_ | `取消` | - |

View File

@ -192,7 +192,7 @@ Page({
| item-height | 选项高度 | _number_ | `44` | - | | item-height | 选项高度 | _number_ | `44` | - |
| confirm-button-text | 确认按钮文字 | _string_ | `确认` | - | | confirm-button-text | 确认按钮文字 | _string_ | `确认` | - |
| cancel-button-text | 取消按钮文字 | _string_ | `取消` | - | | cancel-button-text | 取消按钮文字 | _string_ | `取消` | - |
| visible-item-count | 可见的选项个数 | _number_ | `5` | - | | visible-item-count | 可见的选项个数 | _number_ | `6` | - |
### Events ### Events

View File

@ -157,7 +157,7 @@ Page({
| item-height | 选项高度 | _number_ | `44` | - | | item-height | 选项高度 | _number_ | `44` | - |
| confirm-button-text | 确认按钮文字 | _string_ | `确认` | - | | confirm-button-text | 确认按钮文字 | _string_ | `确认` | - |
| cancel-button-text | 取消按钮文字 | _string_ | `取消` | - | | cancel-button-text | 取消按钮文字 | _string_ | `取消` | - |
| visible-item-count | 可见的选项个数 | _number_ | `5` | - | | visible-item-count | 可见的选项个数 | _number_ | `6` | - |
| default-index | 单列选择器的默认选中项索引,<br>多列选择器请参考下方的 Columns 配置 | _number_ | `0` | - | | default-index | 单列选择器的默认选中项索引,<br>多列选择器请参考下方的 Columns 配置 | _number_ | `0` | - |
### Events ### Events

View File

@ -12,7 +12,7 @@ export const pickerProps = {
}, },
visibleItemCount: { visibleItemCount: {
type: Number, type: Number,
value: 5, value: 6,
}, },
itemHeight: { itemHeight: {
type: Number, type: Number,