mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Cascader): add options-bottom slot (#9804)
This commit is contained in:
parent
df1e6ce916
commit
61ea63199a
@ -259,10 +259,9 @@ export default defineComponent({
|
|||||||
unselected: !selected,
|
unselected: !selected,
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
{slots['options-top']
|
{slots['options-top']?.({ tabIndex })}
|
||||||
? slots['options-top']({ tabIndex: activeTab.value })
|
|
||||||
: null}
|
|
||||||
{renderOptions(options, selected, tabIndex)}
|
{renderOptions(options, selected, tabIndex)}
|
||||||
|
{slots['options-bottom']?.({ tabIndex })}
|
||||||
</Tab>
|
</Tab>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -282,7 +282,8 @@ export default {
|
|||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| title | Custom title | - |
|
| title | Custom title | - |
|
||||||
| option `v3.1.4` | Custom option text | _{ option: Option, selected: boolean }_ |
|
| option `v3.1.4` | Custom option text | _{ option: Option, selected: boolean }_ |
|
||||||
| options-top `v3.2.7` | Custom the content above options | _{ tabIndex: number }_ |
|
| options-top `v3.2.7` | Custom the content above the options | _{ tabIndex: number }_ |
|
||||||
|
| options-bottom `v3.2.8` | Custom the content below the options | _{ tabIndex: number }_ |
|
||||||
|
|
||||||
### Types
|
### Types
|
||||||
|
|
||||||
|
@ -295,6 +295,7 @@ export default {
|
|||||||
| title | 自定义顶部标题 | - |
|
| title | 自定义顶部标题 | - |
|
||||||
| option `v3.1.4` | 自定义选项文字 | _{ option: Option, selected: boolean }_ |
|
| option `v3.1.4` | 自定义选项文字 | _{ option: Option, selected: boolean }_ |
|
||||||
| options-top `v3.2.7` | 自定义选项上方的内容 | _{ tabIndex: number }_ |
|
| options-top `v3.2.7` | 自定义选项上方的内容 | _{ tabIndex: number }_ |
|
||||||
|
| options-bottom `v3.2.8` | 自定义选项下方的内容 | _{ tabIndex: number }_ |
|
||||||
|
|
||||||
### 类型定义
|
### 类型定义
|
||||||
|
|
||||||
|
@ -1,8 +1,19 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[` should allow more custom content 1`] = `
|
exports[`should change close icon when using close-icon prop 1`] = `
|
||||||
|
<i class="van-badge__wrapper van-icon van-icon-success van-cascader__close-icon van-haptics-feedback">
|
||||||
|
</i>
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`should render option slot correctly 1`] = `
|
||||||
|
<li class="van-cascader__option">
|
||||||
|
Custom Option foo
|
||||||
|
</li>
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`should render options-top、options-bottom slots correctly 1`] = `
|
||||||
<div class="van-tab__pane">
|
<div class="van-tab__pane">
|
||||||
tab index: 1
|
Top, tab index: 0
|
||||||
<ul class="van-cascader__options">
|
<ul class="van-cascader__options">
|
||||||
<li class="van-cascader__option van-cascader__option--selected">
|
<li class="van-cascader__option van-cascader__option--selected">
|
||||||
<span>
|
<span>
|
||||||
@ -17,20 +28,10 @@ exports[` should allow more custom content 1`] = `
|
|||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Bottom, tab index: 0
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should change close icon when using close-icon prop 1`] = `
|
|
||||||
<i class="van-badge__wrapper van-icon van-icon-success van-cascader__close-icon van-haptics-feedback">
|
|
||||||
</i>
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`should render option slot correctly 1`] = `
|
|
||||||
<li class="van-cascader__option">
|
|
||||||
Custom Option foo
|
|
||||||
</li>
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`should render title slot correctly 1`] = `
|
exports[`should render title slot correctly 1`] = `
|
||||||
<h2 class="van-cascader__title">
|
<h2 class="van-cascader__title">
|
||||||
Custom Title
|
Custom Title
|
||||||
|
@ -242,10 +242,11 @@ test('should allow to custom the color of option', async () => {
|
|||||||
expect(option.style.color).toEqual('red');
|
expect(option.style.color).toEqual('red');
|
||||||
});
|
});
|
||||||
|
|
||||||
test(' should allow more custom content', async () => {
|
test('should render options-top、options-bottom slots correctly', async () => {
|
||||||
const wrapper = mount(Cascader, {
|
const wrapper = mount(Cascader, {
|
||||||
slots: {
|
slots: {
|
||||||
'options-top': ({ tabIndex }) => `tab index: ${tabIndex}`,
|
'options-top': ({ tabIndex }) => `Top, tab index: ${tabIndex}`,
|
||||||
|
'options-bottom': ({ tabIndex }) => `Bottom, tab index: ${tabIndex}`,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
options,
|
options,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user