fix(ActionSheet): missing callback option

This commit is contained in:
chenjiahan 2020-11-13 15:12:01 +08:00
parent 00bc30c235
commit 27b761f534

View File

@ -78,7 +78,15 @@ export default createComponent({
};
const renderOption = (item, index) => {
const { name, color, subname, loading, disabled, className } = item;
const {
name,
color,
subname,
loading,
callback,
disabled,
className,
} = item;
const Content = loading ? (
<Loading class={bem('loading-icon')} />
@ -90,7 +98,12 @@ export default createComponent({
);
const onClick = () => {
if (callback) {
callback(item);
}
emit('select', item, index);
if (props.closeOnClickAction) {
onUpdateShow(false);
}