2022年1月7日 16:49:37 获取 6个月前 的 日期时间 ;
如果传参 为 正数 则是获取 N个月前 的时间
如果传参 为 负数 则是获取 N个月后 的时间
function getDate(params) {
var dt = new Date();
dt.setMonth(dt.getMonth() - Number(params));
return dt.toLocaleString().replace(/\//g, '-') //这里只是把 "/" 替换为 "-" ; 看需要可去掉;
}