|
2 years ago | |
---|---|---|
.. | ||
README.en-US.md | 2 years ago | |
README.md | 2 years ago | |
picker.d.ts | 2 years ago | |
picker.js | 2 years ago | |
picker.json | 2 years ago | |
picker.wxml | 2 years ago | |
picker.wxss | 2 years ago | |
props.d.ts | 2 years ago | |
props.js | 2 years ago | |
type.d.ts | 2 years ago | |
type.js | 2 years ago |
:: BASE_DOC ::
name | type | default | description | required
-- | -- | -- | -- | --
auto-close | Boolean | true | - | N
cancel-btn | String / Boolean / Object | true | Typescript:boolean \| string \| ButtonProps
| N
columns | Array / Function | [] | required。Typescript:Array<PickerColumn> \| ((item: Array<PickerValue>) => Array<PickerColumn>)
type PickerColumn = PickerColumnItem[]
interface PickerColumnItem { label: string,value: string}
。see more ts definition | Y
confirm-btn | String / Boolean / Object | true | Typescript:boolean \| string \| ButtonProps
,Button API Documents。see more ts definition | N
footer | Slot | - | - | N
header | Boolean / Slot | true | - | N
render-label | String / Function | - | Typescript:(item: PickerColumnItem) => string
| N
title | String | '' | - | N
value | Array | - | Typescript:Array<PickerValue>
type PickerValue = string \| number
。see more ts definition | N
default-value | Array | undefined | uncontrolled property。Typescript:Array<PickerValue>
type PickerValue = string \| number
。see more ts definition | N
visible | Boolean | false | - | N
name | params | description
-- | -- | --
cancel | - | -
change | (value: Array<PickerValue>, label: string, columns: Array<{ column: number; index: number }> )
| -
confirm | (value: Array<PickerValue>, label: string, columns: Array<{ column: number; index: number }> )
| -
pick | (value: Array<PickerValue>, label: string, column: number, index: number)
| -
name | type | default | description | required
-- | -- | -- | -- | --
format | Function | - | Typescript:(option: PickerItemOption) => string
| N
options | Array | [] | Typescript:PickerItemOption[]
interface PickerItemOption { label: string; value: string \| number }
。see more ts definition | N