docs(Calendar): fix doc error (#2984)

fix #2965
This commit is contained in:
rex 2020-04-08 23:21:48 +08:00 committed by GitHub
parent 9683904c29
commit b4d16b670b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,8 +114,8 @@ Page({
date = new Date(date);
return `${date.getMonth() + 1}/${date.getDate()}`;
},
onConfirm(date) {
const [start, end] = date;
onConfirm(event) {
const [start, end] = event.detail;
this.setData({
show: false,
date: `${this.formatDate(start)} - ${this.formatDate(end)}`