mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
feat(Picker): adjust default value of visible-item-count to 6 (#3418)
This commit is contained in:
parent
40072f6d4c
commit
4426a4ef80
@ -91,7 +91,7 @@ db.collection('region')
|
||||
| columns-placeholder | 列占位提示文字 | _string[]_ | `[]` | - |
|
||||
| loading | 是否显示加载状态 | _boolean_ | `false` | - |
|
||||
| item-height | 选项高度 | _number_ | `44` | - |
|
||||
| visible-item-count | 可见的选项个数 | _number_ | `5` | - |
|
||||
| visible-item-count | 可见的选项个数 | _number_ | `6` | - |
|
||||
| confirm-button-text | 确认按钮文字 | _string_ | `确认` | - |
|
||||
| cancel-button-text | 取消按钮文字 | _string_ | `取消` | - |
|
||||
|
||||
|
@ -192,7 +192,7 @@ Page({
|
||||
| item-height | 选项高度 | _number_ | `44` | - |
|
||||
| confirm-button-text | 确认按钮文字 | _string_ | `确认` | - |
|
||||
| cancel-button-text | 取消按钮文字 | _string_ | `取消` | - |
|
||||
| visible-item-count | 可见的选项个数 | _number_ | `5` | - |
|
||||
| visible-item-count | 可见的选项个数 | _number_ | `6` | - |
|
||||
|
||||
### Events
|
||||
|
||||
|
@ -157,7 +157,7 @@ Page({
|
||||
| item-height | 选项高度 | _number_ | `44` | - |
|
||||
| confirm-button-text | 确认按钮文字 | _string_ | `确认` | - |
|
||||
| cancel-button-text | 取消按钮文字 | _string_ | `取消` | - |
|
||||
| visible-item-count | 可见的选项个数 | _number_ | `5` | - |
|
||||
| visible-item-count | 可见的选项个数 | _number_ | `6` | - |
|
||||
| default-index | 单列选择器的默认选中项索引,<br>多列选择器请参考下方的 Columns 配置 | _number_ | `0` | - |
|
||||
|
||||
### Events
|
||||
|
@ -12,7 +12,7 @@ export const pickerProps = {
|
||||
},
|
||||
visibleItemCount: {
|
||||
type: Number,
|
||||
value: 5,
|
||||
value: 6,
|
||||
},
|
||||
itemHeight: {
|
||||
type: Number,
|
||||
|
Loading…
x
Reference in New Issue
Block a user