docs(Picker): add method version tip #5478

This commit is contained in:
陈嘉涵 2020-01-06 14:05:45 +08:00
parent ecff8c4b42
commit ff91b7f121
5 changed files with 45 additions and 37 deletions

View File

@ -1,5 +1,13 @@
# 更新日志
### [v2.1.4]
`2020-01-06`
**Bug Fixes**
- 锁死 @vue/test-utils 版本为 1.0.0-beta.29
### [v2.1.3]
`2020-01-06`
@ -8,6 +16,7 @@
- 增加 cache-loader提高构建速度
- 调整 jest setup 文件执行时机,延迟至 env 初始化后执行
### [v2.1.2]
`2020-01-05`
@ -18,4 +27,3 @@
**Bug Fixes**
- 修复 windows 下路径分隔符错误的问题

View File

@ -169,7 +169,7 @@ export default {
| confirm-button-text | Text of confirm button | *string* | `Confirm` | - |
| cancel-button-text | Text of cancel button | *string* | `Cancel` | - |
| visible-item-count | Count of visible columns | *number* | `5` | - |
| swipe-duration | Duration of the momentum animationunit `ms` | *number* | `1000` | `2.2.13` |
| swipe-duration | Duration of the momentum animationunit `ms` | *number* | `1000` | 2.2.13 |
### Events
@ -183,6 +183,6 @@ export default {
Use [ref](https://vuejs.org/v2/api/#ref) to get DatetimePicker instance and call instance methods
| Name | Description | Attribute | Return value |
|------|------|------|------|
| getPicker | get Picker instance | - | - |
| Name | Description | Attribute | Return value | Version |
|------|------|------|------|------|
| getPicker | get Picker instance | - | - | 2.4.0 |

View File

@ -173,7 +173,7 @@ export default {
| confirm-button-text | 确认按钮文字 | *string* | `确认` | - |
| cancel-button-text | 取消按钮文字 | *string* | `取消` | - |
| visible-item-count | 可见的选项个数 | *number* | `5` | - |
| swipe-duration | 快速滑动时惯性滚动的时长,单位`ms` | *number* | `1000` | `2.2.13` |
| swipe-duration | 快速滑动时惯性滚动的时长,单位`ms` | *number* | `1000` | 2.2.13 |
### Events
@ -187,9 +187,9 @@ export default {
通过 [ref](https://cn.vuejs.org/v2/api/#ref) 可以获取到 DatetimePicker 实例并调用实例方法
| 方法名 | 说明 | 参数 | 返回值 |
|------|------|------|------|
| getPicker | 获取 Picker 实例,用于调用 Picker 的[实例方法](#/zh-CN/picker#fang-fa) | - | - |
| 方法名 | 说明 | 参数 | 返回值 | 版本 |
|------|------|------|------|------|
| getPicker | 获取 Picker 实例,用于调用 Picker 的[实例方法](#/zh-CN/picker#fang-fa) | - | - | 2.4.0 |
## 常见问题

View File

@ -198,7 +198,7 @@ When Picker columns data is acquired asynchronously, use `loading` prop to show
| visible-item-count | Count of visible columns | *number* | `5` | - |
| allow-html | Whether to allow HTML in option text | *boolean* | `true` | 2.1.8 |
| default-index | Default value index of single column picker | *number* | `0` | - |
| swipe-duration | Duration of the momentum animationunit `ms` | *number* | `1000` | `2.2.10` |
| swipe-duration | Duration of the momentum animationunit `ms` | *number* | `1000` | 2.2.10 |
### Events
@ -229,16 +229,16 @@ Picker events will pass different parameters according to the columns are single
Use [ref](https://vuejs.org/v2/api/#ref) to get Picker instance and call instance methods
| Name | Description | Attribute | Return value |
|------|------|------|------|
| getValues | Get current values of all columns | - | values |
| setValues | Set current values of all columns | values | - |
| getIndexes | Get current indexes of all columns | - | indexes |
| setIndexes | Set current indexes of all columns | indexes | - |
| getColumnValue | Get current value of the column | columnIndex | value |
| setColumnValue | Set current value of the column | columnIndex, value | - |
| getColumnIndex | Get current index of the column | columnIndex | optionIndex |
| setColumnIndex | Set current index of the column | columnIndex, optionIndex | - |
| getColumnValues | Get columns data of the column | columnIndex | values |
| setColumnValues | Set columns data of the column | columnIndex, values | - |
| confirm | Stop scrolling and emit confirm event | - | - |
| Name | Description | Attribute | Return value | Version |
|------|------|------|------|------|
| getValues | Get current values of all columns | - | values | - |
| setValues | Set current values of all columns | values | - | - |
| getIndexes | Get current indexes of all columns | - | indexes | - |
| setIndexes | Set current indexes of all columns | indexes | - | - |
| getColumnValue | Get current value of the column | columnIndex | value | - |
| setColumnValue | Set current value of the column | columnIndex, value | - | - |
| getColumnIndex | Get current index of the column | columnIndex | optionIndex | - |
| setColumnIndex | Set current index of the column | columnIndex, optionIndex | - | - |
| getColumnValues | Get columns data of the column | columnIndex | values | - |
| setColumnValues | Set columns data of the column | columnIndex, values | - | - |
| confirm | Stop scrolling and emit confirm event | - | - | 2.4.0 |

View File

@ -206,7 +206,7 @@ export default {
| visible-item-count | 可见的选项个数 | *number* | `5` | - |
| allow-html | 是否允许选项内容中渲染 HTML | *boolean* | `true` | 2.1.8 |
| default-index | 单列选择器的默认选中项索引,<br>多列选择器请参考下方的 Columns 配置 | *number* | `0` | - |
| swipe-duration | 快速滑动时惯性滚动的时长,单位`ms` | *number* | `1000` | `2.2.10` |
| swipe-duration | 快速滑动时惯性滚动的时长,单位`ms` | *number* | `1000` | 2.2.10 |
### Events
@ -241,19 +241,19 @@ Picker 组件的事件会根据 columns 是单列或多列返回不同的参数
通过 [ref](https://cn.vuejs.org/v2/api/#ref) 可以获取到 Picker 实例并调用实例方法
| 方法名 | 说明 | 参数 | 返回值 |
|------|------|------|------|
| getValues | 获取所有列选中的值 | - | values |
| setValues | 设置所有列选中的值 | values | - |
| getIndexes | 获取所有列选中值对应的索引 | - | indexes |
| setIndexes | 设置所有列选中值对应的索引 | indexes | - |
| getColumnValue | 获取对应列选中的值 | columnIndex | value |
| setColumnValue | 设置对应列选中的值 | columnIndex, value | - |
| getColumnIndex | 获取对应列选中项的索引 | columnIndex | optionIndex |
| setColumnIndex | 设置对应列选中项的索引 | columnIndex, optionIndex | - |
| getColumnValues | 获取对应列中所有选项 | columnIndex | values |
| setColumnValues | 设置对应列中所有选项 | columnIndex, values | - |
| confirm | 停止惯性滚动并触发 confirm 事件 | - | - |
| 方法名 | 说明 | 参数 | 返回值 | 版本 |
|------|------|------|------|------|
| getValues | 获取所有列选中的值 | - | values | - |
| setValues | 设置所有列选中的值 | values | - | - |
| getIndexes | 获取所有列选中值对应的索引 | - | indexes | - |
| setIndexes | 设置所有列选中值对应的索引 | indexes | - | - |
| getColumnValue | 获取对应列选中的值 | columnIndex | value | - |
| setColumnValue | 设置对应列选中的值 | columnIndex, value | - | - |
| getColumnIndex | 获取对应列选中项的索引 | columnIndex | optionIndex | - |
| setColumnIndex | 设置对应列选中项的索引 | columnIndex, optionIndex | - | - |
| getColumnValues | 获取对应列中所有选项 | columnIndex | values | - |
| setColumnValues | 设置对应列中所有选项 | columnIndex, values | - | - |
| confirm | 停止惯性滚动并触发 confirm 事件 | - | - | 2.4.0 |
## 常见问题