fix(Calendar): color not work in multiple mode (#5786)

This commit is contained in:
chenjiahan 2020-03-09 20:23:50 +08:00
parent 09ad95ca68
commit ab82f42f6a

View File

@ -186,7 +186,12 @@ export default createComponent({
}
if (this.color) {
if (type === 'start' || type === 'end') {
if (
type === 'start' ||
type === 'end' ||
type === 'multiple-selected' ||
type === 'multiple-middle'
) {
style.background = this.color;
} else if (type === 'middle') {
style.color = this.color;