// 判断是否是当月最后一天(月末不一定,但月初一定是1号,当前日期加1日,是1号就是月末)
export function isLastDateOfCurrentMonth(dateData) {
if (!dateData) return
const date = new Date(dateData)
const next_date = new Date(date?.getTime() + 1 * 24 * 60 * 60 * 1000)?.getDate()
console.log('next_date', next_date)
if (next_date === 1) {
return true
}
return false
}