/**
* 小于10,补0
*/
twoPlaces(month) {
return month < 10 ? '0' + month : month;
},
/**
* 是否为今天
*/
isToday(year, month, day) {
var date = new Date();
if (date.getFullYear() != year || (date.getMonth() + 1) != month || date.getDate() != day) {
return false;
}
return true;
},
/**
* 今天日期
*/
getToday() {
var date = new Date();
return date.getFullYear() + '-' + this.twoPlaces(date.getMonth() + 1) + '-' + this.twoPlaces(date.getDate());
},
/**
* 获取月份的天数
*/
getMonthDayNum(year, month) {
var startDate = new Date(year,month-1,1);
var endDate = new Date(year,month,1);
return (endDate - startDate) / (1000 * 60 * 60 * 24);
},
/**
* 月第一天日期
*/
getMonthFirstDate(year, month) {
return year + '-' + this.twoPlaces(month) + '-01';
},
/**
* 月最后一天日期
*/
getMonthLastDate(year, month) {
return year + '-' + this.twoPlaces(month) + '-' + this.getMonthDayNum(year, month);
},
ConstXiong 备案号:苏ICP备16009629号-3