|
|
|
@ -75,7 +75,7 @@ Page({
|
|
|
|
|
let timer = new Date() |
|
|
|
|
let year = timer.getFullYear() |
|
|
|
|
let month = timer.getMonth() + 1 |
|
|
|
|
month = month.length > 1 ? month : '0' + month |
|
|
|
|
month = month > 9 ? month : '0' + month |
|
|
|
|
let date = `${year}-${month}` |
|
|
|
|
if (date !== this.data.calendarDisplayTime) { |
|
|
|
|
this.setData({ |
|
|
|
|