目前我在一个窗口中显示 6 个月(从 2019 年 11 月到 2019 年 4 月)。用户可以转到上一个/过去 12 个月(直到 2018 年 11 月),并且可以再前进一个月(2019 年 5 月)。用户可以转到前几个月,也可以转到未来几个月,但我需要限制它。
months: any[] = [];
date = new Date();
month = this.date.getMonth();
year = this.date.getFullYear()
ngOnInit() {
this.getMonths(this.year, this.month);
}
getMonths(year:number, month:number) {
this.months = [];
for (let i = 0; i < 6; i++) {
this.months.push(new Date(year, month++));
}
}
getNextData() {
this.month++;
this.getMonths(this.year, this.month);
}
getPreviousData(){
this.month--;
this.getMonths(this.year, this.month);
}
猛跑小猪
相关分类