task#,uat,KPI时间:改成默认 24年12月,接口传参也是24-12

This commit is contained in:
2025-01-09 16:39:20 +08:00
parent 5c83fa773b
commit f00f1bc1fd

View File

@ -1214,8 +1214,11 @@ export default {
}
let yearAndMonth = year + '-' + (month > 9 ? month : '0' + month);
this.current = dayjs(new Date(yearAndMonth)).format('YYYY-MM')
this.startTime = dayjs(new Date()).format('YYYY-MM') + '-01 00:00:00'
this.endTime = dayjs(new Date()).format('YYYY-MM') + '-' + this.getDayLen()+' 23:59:59'
console.log("this.current",this.current)
/*this.startTime = dayjs(new Date()).format('YYYY-MM') + '-01 00:00:00'
this.endTime = dayjs(new Date()).format('YYYY-MM') + '-' + this.getDayLen()+' 23:59:59'*/
this.startTime = '2024-12-01 00:00:00'
this.endTime = '2024-12-31 23:59:59'
this.startMonthTime=this.getStartTimeFromEndTime(this.endTime)
console.log(" this.startMonthTime", this.startMonthTime,this.startTime)
},