这段时间公司做项目,后台给的日期也是花里胡哨的,好多地方都需要前端处理,
推荐一个好用的日期插件day.js
https://www.jianshu.com/p/15d6a9c1bf18
let noFeeOPDate = '2020年4月27日'
let time =noFeeOPDate.replace('年','-')
let time1 = time.replace("月",'-')
let time2 = time1.replace("日",'')
console.log(time2)// 2020-4-27
let initTime = this.$dayjs(time2).subtract(5, 'year').format('YYYY-MM-DD')
let nowTime = this.$dayjs().format('YYYY-MM-DD')
let isTime = this.$dayjs(initTime).isSame(this.$dayjs(nowTime))