mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
chore(Picker): add getEventParams function
This commit is contained in:
parent
c25acb8d46
commit
61ef6b9a98
@ -126,6 +126,11 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getEventParams = () => ({
|
||||||
|
selectedValues: selectedValues.value,
|
||||||
|
selectedOptions: selectedOptions.value,
|
||||||
|
});
|
||||||
|
|
||||||
const onChange = (value: Numeric, columnIndex: number) => {
|
const onChange = (value: Numeric, columnIndex: number) => {
|
||||||
setValue(columnIndex, value);
|
setValue(columnIndex, value);
|
||||||
|
|
||||||
@ -142,34 +147,21 @@ export default defineComponent({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
emit('change', {
|
emit('change', extend({ columnIndex }, getEventParams()));
|
||||||
columnIndex,
|
|
||||||
selectedValues: selectedValues.value,
|
|
||||||
selectedOptions: selectedOptions.value,
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const onClickOption = (currentOption: PickerOption, columnIndex: number) =>
|
const onClickOption = (currentOption: PickerOption, columnIndex: number) =>
|
||||||
emit('clickOption', {
|
emit(
|
||||||
columnIndex,
|
'clickOption',
|
||||||
currentOption,
|
extend({ columnIndex, currentOption }, getEventParams())
|
||||||
selectedValues: selectedValues.value,
|
);
|
||||||
selectedOptions: selectedOptions.value,
|
|
||||||
});
|
|
||||||
|
|
||||||
const confirm = () => {
|
const confirm = () => {
|
||||||
children.forEach((child) => child.stopMomentum());
|
children.forEach((child) => child.stopMomentum());
|
||||||
emit('confirm', {
|
emit('confirm', getEventParams());
|
||||||
selectedValues: selectedValues.value,
|
|
||||||
selectedOptions: selectedOptions.value,
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const cancel = () =>
|
const cancel = () => emit('cancel', getEventParams());
|
||||||
emit('cancel', {
|
|
||||||
selectedValues: selectedValues.value,
|
|
||||||
selectedOptions: selectedOptions.value,
|
|
||||||
});
|
|
||||||
|
|
||||||
const renderColumnItems = () =>
|
const renderColumnItems = () =>
|
||||||
currentColumns.value.map((options, columnIndex) => (
|
currentColumns.value.map((options, columnIndex) => (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user