1.获取今天的
let date=this.$dayjs(new Date()).format('YYYY-MM-DD')
2.根据传入的日期获取日期的前一天,取决于 this.date
this.date = this.$dayjs(new Date(this.date).getTime()-86400000).format('YYYY-MM-DD');
3.根据传入的日期获取日期的后一天,取决于 this.date
this.date = this.$dayjs(new Date(this.date).getTime() +86400000).format('YYYY-MM-DD');