mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-24 15:39:15 +08:00
fix(Calendar): missing info when selected (#5536)
This commit is contained in:
parent
9452444a7d
commit
3e634e618e
@ -184,22 +184,24 @@ export default createComponent({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
if (type === 'selected') {
|
|
||||||
return (
|
|
||||||
<div style={style} class={bem('day')} onClick={onClick}>
|
|
||||||
<div class={bem('selected-day')} style={{ background: this.color }}>
|
|
||||||
{item.text}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const TopInfo = topInfo && <div class={bem('top-info')}>{topInfo}</div>;
|
const TopInfo = topInfo && <div class={bem('top-info')}>{topInfo}</div>;
|
||||||
|
|
||||||
const BottomInfo = bottomInfo && (
|
const BottomInfo = bottomInfo && (
|
||||||
<div class={bem('bottom-info')}>{bottomInfo}</div>
|
<div class={bem('bottom-info')}>{bottomInfo}</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (type === 'selected') {
|
||||||
|
return (
|
||||||
|
<div style={style} class={bem('day')} onClick={onClick}>
|
||||||
|
<div class={bem('selected-day')} style={{ background: this.color }}>
|
||||||
|
{TopInfo}
|
||||||
|
{item.text}
|
||||||
|
{BottomInfo}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
style={style}
|
style={style}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user