##获取年月日
getTodayYYMMDD () {
const today = new Date()/获取当天时间
const year = today.getFullYear()
const month = String(today.getMonth() + 1).padStart(2, '0')
const day = String(today.getDate()).padStart(2, '0')
const str = year + '-' + month + '-' + day
return str
}