比较两个日期是否同一天:
return (new Date().toDateString() === new Date(str).toDateString());
一个日期减去一天:
this.date = new Date(this.date - 24 * 60 * 60 * 1000);