fix(Calendar): display 'NaN/NaN/NaN' in phone device after select date (#3833)

This commit is contained in:
chaselen 2020-12-11 10:31:49 +08:00 committed by GitHub
parent 5a4034d341
commit 6b1f510daa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ Page({
this.setData({ showCalendar: false });
this.setData({
[`date.${this.data.id}`]: event.detail
[`date.${this.data.id}`]: Array.isArray(event.detail) ? event.detail.map(date => date.valueOf()) : event.detail.valueOf()
});
},