getCurrentTime() {
//获取当前时间
let myDate = new Date()
let wk = myDate.getDay()
let yy = String(myDate.getFullYear())
let mm = myDate.getMonth() + 1
let dd = String(myDate.getDate() < 10 ? '0' + myDate.getDate() : myDate.getDate())
let hou = String(myDate.getHours() < 10 ? '0' + myDate.getHours() : myDate.getHours())
let min = String(myDate.getMinutes() < 10 ? '0' + myDate.getMinutes() : myDate.getMinutes())
let sec = String(myDate.getSeconds() < 10 ? '0' + myDate.getSeconds() : myDate.getSeconds())
let weeks = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']
let week = weeks[wk]
this.nowDate = yy + '年' + mm + '月' + dd +'日'
this.nowTime = hou + ':' + min + ':' + sec
this.nowWeek = week
let nowdata=this.nowDate+this.nowTime+ this.nowWeek
console.log(nowdata)
let lastmm = ''
if(yy % 4 == 0 && yy % 100 != 0 || yy % 400 == 0){//闰年大小月判断
if(mm==2){
lastmm = mm+'-29'
}
if(mm==1 ||mm==3||mm==5 ||mm==7||mm==8 ||mm==10||mm==12){
lastmm = mm+'-31'
}if(mm==4 ||mm==6||mm==9 ||mm==11){
lastmm = mm+'-30'
}
}else{
if(mm==2){
lastmm = mm+'-28'
}
if(mm==1 ||mm==3||mm==5 ||mm==7||mm==8 ||mm==10||mm==12){
lastmm = mm+'-31'
}if(mm==4 ||mm==6||mm==9 ||mm==11){
lastmm = mm+'-30'
}
};
let MfirstTime = yy+ '-0'+mm+'-01-00-00-00'//月的时间
let MlastTime =yy+'-0'+ lastmm+'-23-59-59'
console.log(MfirstTime,MlastTime)
},
获取当前月时间
于 2022-07-15 16:08:56 首次发布