feat(Area): add toolbar、confirm、cancel slots (#8969)

This commit is contained in:
neverland 2021-07-02 10:21:28 +08:00 committed by GitHub
parent 32f7be0ec2
commit edb6ea8858
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 21 deletions

View File

@ -24,6 +24,24 @@ import { Picker } from '../picker';
const [name, bem] = createNamespace('area');
const EMPTY_CODE = '000000';
const INHERIT_SLOTS = [
'title',
'cancel',
'confirm',
'toolbar',
'columns-top',
'columns-bottom',
] as const;
const INHERIT_PROPS = [
'title',
'loading',
'readonly',
'itemHeight',
'swipeDuration',
'visibleItemCount',
'cancelButtonText',
'confirmButtonText',
] as const;
function isOverseaCode(code: string) {
return code[0] === '9';
@ -305,23 +323,14 @@ export default defineComponent({
return (
<Picker
v-slots={pick(slots, ['title', 'columns-top', 'columns-bottom'])}
v-slots={pick(slots, INHERIT_SLOTS)}
ref={pickerRef}
class={bem()}
columns={columns}
valueKey="name"
onChange={onChange}
onConfirm={onConfirm}
{...pick(props, [
'title',
'loading',
'readonly',
'itemHeight',
'swipeDuration',
'visibleItemCount',
'cancelButtonText',
'confirmButtonText',
])}
{...pick(props, INHERIT_PROPS)}
/>
);
};

View File

@ -147,11 +147,14 @@ An array that contains selected area objects.
### Slots
| Name | Description |
| -------------- | ---------------------------- |
| title | Custom title |
| columns-top | Custom content above columns |
| columns-bottom | Custom content below columns |
| Name | Description | SlotProps |
| --------------- | ---------------------------- | --------- |
| toolbar `3.1.2` | Custom toolbar content | - |
| title | Custom title | - |
| confirm `3.1.2` | Custom confirm button text | - |
| cancel `3.1.2` | Custom cancel button text | - |
| columns-top | Custom content above columns | - |
| columns-bottom | Custom content below columns | - |
### Methods

View File

@ -149,11 +149,14 @@ confirm 事件返回的数据整体为一个数组,数组每一项对应一列
### Slots
| 名称 | 说明 |
| -------------- | ------------------ |
| title | 自定义标题内容 |
| columns-top | 自定义选项上方内容 |
| columns-bottom | 自定义选项下方内容 |
| 名称 | 说明 | 参数 |
| ---------------- | ---------------------- | ---- |
| toolbar `v3.1.2` | 自定义整个顶部栏的内容 | - |
| title | 自定义标题内容 | - |
| confirm `v3.1.2` | 自定义确认按钮内容 | - |
| cancel `v3.1.2` | 自定义取消按钮内容 | - |
| columns-top | 自定义选项上方内容 | - |
| columns-bottom | 自定义选项下方内容 | - |
### 方法